Skip to content

Commit

Permalink
fix: missing templates and start script
Browse files Browse the repository at this point in the history
  • Loading branch information
adantoscano authored and jorgecasar committed Sep 14, 2023
1 parent 00eca32 commit cc264a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"main": "src/index.js",
"bin": "src/index.js",
"files": [
"src/**/*.{d.ts,d.ts.map,js,js.map}",
"src/**/*.{d.ts,d.ts.map,js,js.map,hbs}",
"LICENSE",
"README.md",
"CHANGELOG.md",
Expand All @@ -27,7 +27,8 @@
"clean": "rm -rf output",
"build": "tsc",
"postprepare": "npm run build",
"start": "node ./index.js",
"prestart": "npm run build",
"start": "node .",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint --ext .ts .",
"lint:prettier": "prettier --list-different \"**/*.ts\" || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
Expand Down

0 comments on commit cc264a3

Please sign in to comment.