Skip to content

Commit f7b6004

Browse files
authored
fix: failing build script (#127)
1 parent 6ff51da commit f7b6004

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

DEVELOPING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
1. Create a system-wide link for use in other directories: `npm link`
2222
1. Start develop mode: `npm run dev`
23-
1. For TDD fans: `npm run test--tdd`
23+
1. For TDD fans: `npm run dev--tdd`
2424
1. Write code
2525
1. Create new temporary directory to test app population named `create-exposed-app-test-my-new-feature`
2626
1. Run `npx create-exposed-app` in new directory

src/templates/generate/latest/files/package.json.ejs.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,14 @@ to: package.json
3333
"test": "jest",
3434
"test--coverage": "npm run test -- --coverage",
3535
"test--watch": "npm run test -- --watch",
36-
"build": "rimraf dist && run-p build-js build-dts build-templates",
36+
"build": "rimraf dist && run-p build-js build-dts",
3737
"build--watch": "run-p build-js--cjs--watch build-dts--watch",
3838
"build-js": "run-s build-js--cjs build-js--esm",
3939
"build-js--cjs": "node bin/build.js",
4040
"build-js--cjs--watch": "node bin/build.js --watch",
4141
"build-js--esm": "gen-esm-wrapper dist/index.js dist/index.esm.js",
4242
"build-dts": "tsc --emitDeclarationOnly",
4343
"build-dts--watch": "npm run build-dts -- --watch --preserveWatchOutput",
44-
"build-templates": "cp -rv ./templates ./dist",
4544
"validate": "run-p --print-label lint test build"
4645
},
4746
"dependencies": {

0 commit comments

Comments
 (0)