mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 08:27:08 +00:00
Use Node workspaces to manage repo dependencies
This commit is contained in:
17
package.json
Normal file
17
package.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "dougal-software",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"workspaces": [
|
||||
"lib/modules/@dougal/*",
|
||||
"lib/www/server",
|
||||
"lib/www/client/source"
|
||||
],
|
||||
"scripts": {
|
||||
"server:run": "cd lib/www/server && npm start",
|
||||
"server:run:debug": "cd lib/www/server && DEBUG='*' npm start",
|
||||
"client:serve": "vue-cli-service serve --host=0.0.0.0",
|
||||
"client:build": "vue-cli-service build",
|
||||
"build": "npm run build --workspaces"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user