Skip to content

Commit

Permalink
Fixed redundant build steps in the custom-fonts package
Browse files Browse the repository at this point in the history
no issue
  • Loading branch information
sagzy committed Nov 27, 2024
1 parent 04f337e commit 85eccb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ghost/custom-fonts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
},
"scripts": {
"dev": "tsc --watch --preserveWatchOutput --sourceMap",
"build": "yarn build:cjs && yarn build:esm && yarn build:ts",
"build": "yarn build:cjs && yarn build:esm && yarn build:types",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./build/types",
"build:cjs": "tsc -p tsconfig.json --outDir ./build/cjs --module CommonJS",
"build:esm": "tsc -p tsconfig.esm.json --outDir ./build/esm --module ES2020",
"build:ts": "yarn build:cjs && yarn build:esm && yarn build:types",
"build:ts": "yarn build",
"prepare": "yarn build",
"test:unit": "NODE_ENV=testing c8 --src src --all --check-coverage --100 --reporter text --reporter cobertura mocha -r ts-node/register './test/**/*.test.ts'",
"test": "yarn test:ts && yarn test:unit",
Expand Down

0 comments on commit 85eccb8

Please sign in to comment.