Skip to content

Commit

Permalink
Support mjs files
Browse files Browse the repository at this point in the history
  • Loading branch information
andy128k committed Oct 2, 2022
1 parent 798d8de commit 9a9b961
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
],
"scripts": {
"commit": "git-cz",
"update-snapshots": "ava --timeout 10m --no-worker-threads -u test/*.test.js",
"update-snapshots": "ava --timeout 10m --no-worker-threads -u 'test/*.test.{js,mjs}'",
"declarations": "node_modules/.bin/tsc --declaration --allowJs src/index.js",
"test": "ava --timeout 10m --no-worker-threads --fail-fast",
"prettify:fix": "prettier --write src/*.js test/*.js",
"prettify": "prettier --check src/*.js test/*.js",
"lint:fix": "eslint src/*.js test/*.js --fix",
"lint": "eslint src/*.js test/*.js",
"prettify:fix": "prettier --write 'src/*.{js,mjs}' 'test/*.{js,mjs}'",
"prettify": "prettier --check 'src/*.{js,mjs}' 'test/*.{js,mjs}'",
"lint:fix": "eslint 'src/*.{js,mjs}' 'test/*.{js,mjs}' --fix",
"lint": "eslint 'src/*.{js,mjs}' 'test/*.{js,mjs}'",
"coverage": "nyc npm test",
"release": "standard-version"
},
Expand Down

0 comments on commit 9a9b961

Please sign in to comment.