Skip to content

Commit

Permalink
fix: failing build script
Browse files Browse the repository at this point in the history
  • Loading branch information
iamturns committed Mar 13, 2021
1 parent 72a31ff commit cac5ea6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

1. Create a system-wide link for use in other directories: `npm link`
1. Start develop mode: `npm run dev`
1. For TDD fans: `npm run test--tdd`
1. For TDD fans: `npm run dev--tdd`
1. Write code
1. Create new temporary directory to test app population named `create-exposed-app-test-my-new-feature`
1. Run `npx create-exposed-app` in new directory
Expand Down
5 changes: 1 addition & 4 deletions src/templates/generate/latest/files/package.json.ejs.t
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ to: package.json
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "npm run build-js--cjs--watch",
"dev-tdd": "npm run test--watch",
"format": "bash bin/format.sh",
"lint": "run-p lint-es lint-ts lint-md",
"lint-es": "eslint --ext .js,.jsx,.ts,.tsx --format=pretty ./",
Expand All @@ -33,15 +31,14 @@ to: package.json
"test": "jest",
"test--coverage": "npm run test -- --coverage",
"test--watch": "npm run test -- --watch",
"build": "rimraf dist && run-p build-js build-dts build-templates",
"build": "rimraf dist && run-p build-js build-dts",
"build--watch": "run-p build-js--cjs--watch build-dts--watch",
"build-js": "run-s build-js--cjs build-js--esm",
"build-js--cjs": "node bin/build.js",
"build-js--cjs--watch": "node bin/build.js --watch",
"build-js--esm": "gen-esm-wrapper dist/index.js dist/index.esm.js",
"build-dts": "tsc --emitDeclarationOnly",
"build-dts--watch": "npm run build-dts -- --watch --preserveWatchOutput",
"build-templates": "cp -rv ./templates ./dist",
"validate": "run-p --print-label lint test build"
},
"dependencies": {
Expand Down

0 comments on commit cac5ea6

Please sign in to comment.