forked from snehilvj/dash-mantine-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
39 lines (30 loc) · 704 Bytes
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
set dotenv-load := false
# Generate components and build the bundle
build:
npm run build
# Build the webpack bundle
build-js:
npm run build:js
# Generate the components
generate:
npm run build:backends
# Rebuild the bundle on change
watch:
npm run watch
# Install pip requirements & node modules.
install:
pip install -r requirements.txt
npm install
# Package the application for distribution using python wheel.
package: clean build
python -m build
# Publish the package to pypi using twine.
publish: package
npm publish
twine upload dist/*
# Remove dist & build directories
clean:
rm -rf dist
rm -rf build
format:
npx prettier --write src/ts/