Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove esm flag
  • Loading branch information
searls committed Feb 12, 2023
1 parent 1d06166 commit cc913e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -44,8 +44,8 @@
"test": "run-s test:unit test:safe test:esm test:no-loader-esm test:example",
"test:unit": "teenytest --helper test/helper.js \"test/unit/**/*.test.{js,ts}\"",
"test:safe": "teenytest --helper test/helper.js \"test/safe/**/*.test.{js,ts}\"",
"test:esm": "if node test/supports-esm.js; then NODE_OPTIONS='--loader=quibble' TS_NODE_IGNORE='(?:^|/)node_modules/,notypescript' ./test/safe-esm/teenytest-proxy.js --helper test/helper.js test/safe-esm/replace.test.js; fi",
"test:no-loader-esm": "if node test/supports-esm.js; then TS_NODE_IGNORE='(?:^|/)node_modules/,notypescript' teenytest test/helper.js './test/safe-esm/*.no-loader-test.{mjs,js}'; fi",
"test:esm": "NODE_OPTIONS='--loader=quibble' TS_NODE_IGNORE='(?:^|/)node_modules/,notypescript' ./test/safe-esm/teenytest-proxy.js --helper test/helper.js test/safe-esm/replace.test.js",
"test:no-loader-esm": "TS_NODE_IGNORE='(?:^|/)node_modules/,notypescript' teenytest test/helper.js './test/safe-esm/*.no-loader-test.{mjs,js}'",
"test:ci": "npm run compile && run-p style test && echo \"All done!\"",
"test:example": "run-s test:example:babel test:example:jest test:example:jest-broken test:example:node test:example:node-ava test:example:node-esm",
"test:example:babel": "./script/run-examples babel",
Expand All @@ -54,7 +54,7 @@
"test:example:plain-html": "./script/run-examples plain-html",
"test:example:node": "./script/run-examples node",
"test:example:node-ava": "./script/run-examples node-ava",
"test:example:node-esm": "if node test/supports-esm.js; then ./script/run-examples node-esm; fi",
"test:example:node-esm": "./script/run-examples node-esm",
"test:example:webpack": "./script/run-examples webpack",
"version:write": "echo \"export default '$npm_package_version'\" > src/version.js",
"preversion": "git pull --rebase",
Expand Down
3 changes: 0 additions & 3 deletions test/supports-esm.js

This file was deleted.

0 comments on commit cc913e9

Please sign in to comment.