Overview
Comment: | Change name scheme of scripts. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
87090dea70c0f7161b1802bacc787475 |
User & Date: | robin.hansen on 2021-02-12 06:31:33 |
Other Links: | manifest | tags |
Context
2021-02-13
| ||
07:46 | Update copyright year in LICENSE. Leaf check-in: e0f1c277bd user: robin.hansen tags: trunk | |
2021-02-12
| ||
09:19 | Merge new test script names from trunk. check-in: 4a3f3a82db user: robin.hansen tags: modules | |
06:31 | Change name scheme of scripts. check-in: 87090dea70 user: robin.hansen tags: trunk | |
2021-02-01
| ||
05:29 | Update dependencies check-in: 98700dab4b user: robin.hansen tags: trunk | |
Changes
Modified package.json from [8ee93bfe0f] to [9974fb2cf5].
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"elm-format": "^0.8.4", "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.4", "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" } |