Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #506 from webstech/cw/winwin
ci: improve Windows support
  • Loading branch information
searls committed Feb 19, 2023
2 parents 9694bb3 + 114a379 commit 56d5b2b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
* eol=lf
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -48,14 +48,14 @@
"test:no-loader-esm": "cross-env 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",
"test:example:jest": "./script/run-examples jest",
"test:example:jest-broken": "./script/run-examples jest-broken",
"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": "./script/run-examples node-esm",
"test:example:webpack": "./script/run-examples webpack",
"test:example:babel": "bash ./script/run-examples babel",
"test:example:jest": "bash ./script/run-examples jest",
"test:example:jest-broken": "bash ./script/run-examples jest-broken",
"test:example:plain-html": "bash ./script/run-examples plain-html",
"test:example:node": "bash ./script/run-examples node",
"test:example:node-ava": "bash ./script/run-examples node-ava",
"test:example:node-esm": "bash ./script/run-examples node-esm",
"test:example:webpack": "bash ./script/run-examples webpack",
"version:write": "echo \"export default '$npm_package_version'\" > src/version.js",
"preversion": "git pull --rebase",
"version": "npm run version:write && npm run compile && git add src/version.js",
Expand Down
2 changes: 1 addition & 1 deletion test/safe-esm/teenytest-proxy.js
Expand Up @@ -6,4 +6,4 @@
//
// Once these bugs are solved, we can go back to running teenytest regularly for ESM tests

require('../../node_modules/.bin/teenytest')
require('../../node_modules/teenytest/bin/teenytest')

0 comments on commit 56d5b2b

Please sign in to comment.