|
18 | 18 | "zip": "zip-build dist release --template '%NAME%_%VERSION%.%EXT%' --override", |
19 | 19 | "package": "npm run build:production && npm run zip", |
20 | 20 | "package:debug": "cross-env DEBUG_PROD=true npm run package", |
21 | | - "start:core": "cd ../paranext-core && npm run start", |
22 | | - "start": "cross-env MAIN_ARGS=\"--extensions $INIT_CWD/dist\" concurrently \"npm:watch\" \"npm:start:core\"", |
23 | | - "start:production": "cross-env MAIN_ARGS=\"--extensions $INIT_CWD/dist\" concurrently \"npm:watch:production\" \"npm:start:core\"", |
| 21 | + "start": "cross-env MAIN_ARGS=\"--extensions $INIT_CWD/dist\" concurrently \"npm:watch\" \"npm:core:start\"", |
| 22 | + "start:production": "cross-env MAIN_ARGS=\"--extensions $INIT_CWD/dist\" concurrently \"npm:watch:production\" \"npm:core:start\"", |
24 | 23 | "lint": "npm run lint:scripts && npm run lint:styles && npm run lint:typecheck", |
25 | 24 | "lint:scripts": "cross-env NODE_ENV=development eslint --ext .cjs,.js,.jsx,.ts,.tsx --cache .", |
26 | 25 | "lint:styles": "stylelint **/*.{css,scss} --allow-empty-input", |
|
29 | 28 | "lint-fix:scripts": "npm run format && npm run lint:scripts", |
30 | 29 | "bump-versions": "ts-node ./lib/bump-versions.ts", |
31 | 30 | "test": "jest", |
32 | | - "test:coverage": "jest --coverage" |
| 31 | + "test:coverage": "jest --coverage", |
| 32 | + "core:start": "npm --prefix ../paranext-core start", |
| 33 | + "core:stop": "npm --prefix ../paranext-core stop", |
| 34 | + "core:install": "npm --prefix ../paranext-core install", |
| 35 | + "core:pull": "git -C ../paranext-core pull --ff-only", |
| 36 | + "core:update": "npm run core:pull && npm run core:install" |
33 | 37 | }, |
34 | 38 | "browserslist": [], |
35 | 39 | "peerDependencies": { |
|
0 commit comments