|
4 | 4 | "node": ">= 10.*" |
5 | 5 | }, |
6 | 6 | "scripts": { |
7 | | - "setup": "lerna bootstrap; yarn run link", |
| 7 | + "setup": "lerna bootstrap && yarn run link", |
8 | 8 | "start": "lerna run dev --stream", |
9 | 9 | "link": "lerna exec -- yarn link", |
10 | 10 | "unlink": "lerna exec -- yarn unlink", |
11 | | - "clean": "lerna run clean; rimraf {.cache,node_modules,reports,packages/**/{node_modules,lib,build,coverage},yarn.lock}", |
| 11 | + "clean": "lerna run clean && rimraf {.cache,node_modules,reports,packages/**/{node_modules,lib,build,coverage},yarn.lock}", |
12 | 12 | "compile": "lerna run compile", |
13 | 13 | "lint": "tslint ./packages/*/{src,__tests__}/*.{ts,tsx}", |
14 | | - "lint:ci": "mkdir -p reports/junit; yarn lint --formatters-dir node_modules/tslint-junit-formatter/formatters --format junit -o ./reports/junit/tslint.xml", |
| 14 | + "lint:ci": "mkdir -p reports/junit && yarn lint --formatters-dir node_modules/tslint-junit-formatter/formatters --format junit -o ./reports/junit/tslint.xml", |
15 | 15 | "publish": "lerna publish prerelease", |
16 | 16 | "publish:canary": "lerna publish --canary", |
17 | 17 | "test": "yarn lint && yarn compile && yarn coverage && yarn test:prettier", |
18 | 18 | "testonly": "lerna run testonly", |
19 | | - "prettier": "prettier --write '**/*.{json,md,js,jsx,ts,tsx}'", |
20 | | - "test:prettier": "prettier --list-different '**/*.{json,md,js,jsx,ts,tsx}'", |
| 19 | + "prettier": "prettier --write \"**/*.{json,md,js,jsx,ts,tsx}\"", |
| 20 | + "test:prettier": "prettier --list-different \"**/*.{json,md,js,jsx,ts,tsx}\"", |
21 | 21 | "coverage": "lerna run coverage", |
22 | 22 | "coverage:ci": "lerna run coverage -- --ci --reporters=default --reporters=jest-junit", |
23 | 23 | "codecov": "codecov", |
24 | | - "reset": "yarn clean; yarn install; yarn setup; yarn compile", |
| 24 | + "reset": "yarn clean && yarn install && yarn setup && yarn compile", |
25 | 25 | "docs": "typedoc --readme none --mode modules --out docs/api --ignoreCompilerErrors --excludeExternals --external-modulemap \".*(packages/[^/]+)/.*\" --logger none --name \"Prime CMS\" ./packages" |
26 | 26 | }, |
27 | 27 | "workspaces": { |
|
0 commit comments