We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df9f80e + c74c378 commit c50c157Copy full SHA for c50c157
justfile
@@ -3,7 +3,7 @@ all: lint sync
3
4
# Lint source typescript
5
lint:
6
- npm run lint -- --fix
+ npm run lint-fix
7
8
# Sync generated files (javascript and PR checks)
9
sync: build update-pr-checks
@@ -15,3 +15,16 @@ update-pr-checks:
15
# Transpile typescript code into javascript
16
build:
17
npm run build
18
+
19
+# Build then run all the tests
20
+test: build
21
+ npm run test
22
23
+# Run the tests for a single file
24
+test_file filename: build
25
+ npx ava --verbose {{filename}}
26
27
+[doc("Refresh the .js build artefacts in the lib directory")]
28
+[confirm]
29
+refresh-lib:
30
+ rm -rf lib && npm run build
0 commit comments