|
3 | 3 | "description": "${packageDescription}",
|
4 | 4 | "version": "${packageVersion}",
|
5 | 5 | "scripts": {
|
6 |
| - "clean": "yarn remove-definitions && yarn remove-dist && yarn remove-documentation", |
7 |
| - "build-documentation": "yarn remove-documentation && typedoc ./", |
8 |
| - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", |
9 |
| - "remove-definitions": "rimraf ./types", |
10 |
| - "remove-dist": "rimraf ./dist", |
11 |
| - "remove-documentation": "rimraf ./docs", |
12 |
| - "test": "jest --coverage --passWithNoTests", |
| 6 | + "build": "yarn build:cjs && yarn build:es && yarn build:types", |
13 | 7 | "build:cjs": "tsc -p tsconfig.json",
|
| 8 | + "build:docs": "yarn clean:docs && typedoc ./", |
14 | 9 | "build:es": "tsc -p tsconfig.es.json",
|
15 | 10 | "build:types": "tsc -p tsconfig.types.json",
|
16 |
| - "build": "yarn build:cjs && yarn build:es && yarn build:types" |
| 11 | + "clean": "yarn clean:dist && yarn clean:docs", |
| 12 | + "clean:dist": "rimraf ./dist", |
| 13 | + "clean:docs": "rimraf ./docs", |
| 14 | + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", |
| 15 | + "test": "jest --coverage --passWithNoTests" |
17 | 16 | },
|
18 | 17 | "main": "./dist/cjs/index.js",
|
19 | 18 | "types": "./dist/types/index.d.ts",
|
|
0 commit comments