Skip to content

Commit

Permalink
fix(ts): fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wessberg committed May 17, 2021
1 parent b938bbd commit 9b23786
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
"start": "node ./dist/index.js",
"generate:scaffold": "scaffold all --yes",
"generate:changelog": "standard-changelog --first-release",
"generate:all": "pnpm run generate:scaffold && pnpm run generate:changelog",
"generate:all": "npm run generate:scaffold && npm run generate:changelog",
"clean": "rimraf dist",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color",
"prettier": "prettier --write '{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}'",
"test": "NODE_ENV=TEST ava",
"prebuild": "pnpm run clean",
"build": "pnpm run rollup",
"watch": "pnpm run rollup -- --watch",
"prebuild": "npm run clean",
"build": "npm run rollup",
"watch": "npm run rollup -- --watch",
"rollup": "rollup -c rollup.config.js",
"scripts:markdown-format-feature-names": "ts-node --project scripts/tsconfig.json scripts/markdown-format-feature-names.ts",
"preversion": "NODE_ENV=production pnpm run build",
"version": "pnpm run generate:all && git add .",
"preversion": "NODE_ENV=production npm run build",
"version": "npm run generate:all && git add .",
"release": "np --no-cleanup --no-yarn",
"update:check": "pnpx pnpm-check-updates -x np --dep dev,prod",
"update:commit": "pnpx pnpm-check-updates -u -x np --dep dev,prod && pnpm update && pnpm install"
"update:check": "npx npm-check-updates -x np --dep dev,prod",
"update:commit": "npx npm-check-updates -u -x np --dep dev,prod && npm update && npm install"
},
"keywords": [
"polyfills",
Expand Down

0 comments on commit 9b23786

Please sign in to comment.