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.
1 parent 9c48297 commit 059f4a8Copy full SHA for 059f4a8
cli/.gitignore
@@ -9,4 +9,5 @@
9
!fontgen.ts
10
!test.ts
11
!utils.ts
12
+!deno.json
13
!deno.lock
cli/Makefile
@@ -17,7 +17,7 @@ test: fontgen check
17
deno test --allow-env --allow-read --allow-net --allow-write --allow-run test.ts
18
19
build: fontgen check
20
- deno run --allow-env --allow-read --allow-net --allow-write --allow-run --lock --frozen bundle.ts
+ deno run --allow-env --allow-read --allow-net --allow-write --allow-run bundle.ts
21
22
install: build
23
deno install $(DENO_PERMISSIONS) -f -n fabric bundled.ts
cli/deno.json
@@ -0,0 +1,5 @@
1
+{
2
+ "lock": {
3
+ "frozen": true
4
+ }
5
+}
0 commit comments