File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/templates/generate/latest/files Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 2020
21211 . Create a system-wide link for use in other directories: ` npm link `
22221 . Start develop mode: ` npm run dev `
23- 1 . For TDD fans: ` npm run test --tdd `
23+ 1 . For TDD fans: ` npm run dev --tdd `
24241 . Write code
25251 . Create new temporary directory to test app population named ` create-exposed-app-test-my-new-feature `
26261 . Run ` npx create-exposed-app ` in new directory
Original file line number Diff line number Diff 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": {
You can’t perform that action at this time.
0 commit comments