-
- Downloads
WIP using workspaces
Currently initial build is working, we got hotbuild on plugin edition But changes on plugins are not updated, I guess they are not rebuilt
Showing
- .dockerignore 1 addition, 0 deletions.dockerignore
- build_deps.sh 18 additions, 4 deletionsbuild_deps.sh
- package-lock.json 11733 additions, 23390 deletionspackage-lock.json
- package.json 8 additions, 10 deletionspackage.json
- src/index.js 0 additions, 1 deletionsrc/index.js
- webpack.config.js 1 addition, 0 deletionswebpack.config.js
build_deps.sh
100644 → 100755
This diff is collapsed.
... | @@ -4,26 +4,24 @@ | ... | @@ -4,26 +4,24 @@ |
"description": "", | "description": "", | ||
"private": true, | "private": true, | ||
"scripts": { | "scripts": { | ||
"postinstall": "submodules-install", | "prebuild": "./build_deps.sh", | ||
"build": "webpack --config webpack.config.js", | "build": "webpack --config webpack.config.js", | ||
"serve": "npm install && webpack serve --config webpack.config.js" | "preserve": "npm run build", | ||
"serve": "webpack serve --config webpack.config.js" | |||
}, | }, | ||
"submodules": [ | |||
"mirador-video-annotation/*", | |||
"annotations-plugin/*" | |||
], | |||
"author": "", | "author": "", | ||
"license": "ISC", | "license": "ISC", | ||
"dependencies": { | "dependencies": { | ||
"css-loader": "^3.6.0", | "css-loader": "^3.6.0", | ||
"dotenv-webpack": "^8.0.1", | "dotenv-webpack": "^8.0.1", | ||
"mirador": "file:mirador-video-annotation", | |||
"mirador-annotations": "file:annotations-plugin", | |||
"react": "^16.13.1", | "react": "^16.13.1", | ||
"react-dom": "^16.13.1", | "react-dom": "^16.13.1", | ||
"style-loader": "^1.2.1", | "style-loader": "^1.2.1" | ||
"submodules-install": "1.0.2" | |||
}, | }, | ||
"workspaces": [ | |||
"mirador-video-annotation/", | |||
"annotations-plugin/" | |||
], | |||
"devDependencies": { | "devDependencies": { | ||
"webpack": "^4.43.0", | "webpack": "^4.43.0", | ||
"webpack-cli": "^4.3.12", | "webpack-cli": "^4.3.12", | ||
... | ... |
Please register or sign in to comment