Skip to content

Commit 5d2ccf4

Browse files
authored
Fixed redundant build steps in the custom-fonts package (#21733)
no issue
1 parent 2be7ec2 commit 5d2ccf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/custom-fonts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
},
1717
"scripts": {
1818
"dev": "tsc --watch --preserveWatchOutput --sourceMap",
19-
"build": "yarn build:cjs && yarn build:esm && yarn build:ts",
19+
"build": "yarn build:cjs && yarn build:esm && yarn build:types",
2020
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./build/types",
2121
"build:cjs": "tsc -p tsconfig.json --outDir ./build/cjs --module CommonJS",
2222
"build:esm": "tsc -p tsconfig.esm.json --outDir ./build/esm --module ES2020",
23-
"build:ts": "yarn build:cjs && yarn build:esm && yarn build:types",
23+
"build:ts": "yarn build",
2424
"prepare": "yarn build",
2525
"test:unit": "NODE_ENV=testing c8 --src src --all --check-coverage --100 --reporter text --reporter cobertura mocha -r ts-node/register './test/**/*.test.ts'",
2626
"test": "yarn test:ts && yarn test:unit",

0 commit comments

Comments
 (0)