Overview
Comment: | Merge new test script names from trunk. |
---|---|
Timelines: | family | ancestors | descendants | both | modules |
Files: | files | file ages | folders |
SHA3-256: |
4a3f3a82db190208568b31124e901c16 |
User & Date: | robin.hansen on 2021-02-12 09:19:58 |
Other Links: | branch diff | manifest | tags |
Context
2021-02-12
| ||
12:21 | Implemented conversion from String to opaque PackageName type. check-in: b410ba3fed user: robin.hansen tags: modules | |
09:19 | Merge new test script names from trunk. check-in: 4a3f3a82db user: robin.hansen tags: modules | |
08:40 | Add stubbed modules for upcomming PackageLoader feature which loads, parses and qualifies an entire ... check-in: 4ebb2687f0 user: robin.hansen tags: modules | |
06:31 | Change name scheme of scripts. check-in: 87090dea70 user: robin.hansen tags: trunk | |
Changes
Modified package.json from [1fef5e3314] to [ad181fde73].
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"elm-format": "^0.8.5", "elm-test": "^0.19.1-revision6", "jest": "^26.6.3", "strip-indent": "^3.0.0", "wabt": "^1.0.20" }, "scripts": { "test": "elm-test && npm run wasm-test", "auto-elm-test": "elm-test --watch", "wasm-test": "elm make src/Main.elm --output wasm_tests/compiler.js && sed -i '' \"s/console.warn\\(.*\\);/\\/*&*\\//g\" wasm_tests/compiler.js && jest" }, "author": "Robin Heggelund Hansen", "license": "MIT" } |
| > | | |
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"elm-format": "^0.8.5", "elm-test": "^0.19.1-revision6", "jest": "^26.6.3", "strip-indent": "^3.0.0", "wabt": "^1.0.20" }, "scripts": { "test": "npm run test:elm && npm run test:wasm", "test:elm": "elm-test", "test:elm:watch": "elm-test --watch", "test:wasm": "elm make src/Main.elm --output wasm_tests/compiler.js && sed -i '' \"s/console.warn\\(.*\\);/\\/*&*\\//g\" wasm_tests/compiler.js && jest" }, "author": "Robin Heggelund Hansen", "license": "MIT" } |