Skip to content

Commit

Permalink
provision assets into typescript build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lexming committed May 21, 2024
1 parent 6e40872 commit 7721fef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:lib": "jlpm run copy && tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab-lmod/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"copy": "mkdir -p lib/src && cp -r src/assets lib/src",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"eslint:check:junit": "eslint . --ext .ts,.tsx --format junit --output-file linting.xml",
Expand Down

0 comments on commit 7721fef

Please sign in to comment.