Skip to content

Commit a978ba6

Browse files
update
1 parent ab7af96 commit a978ba6

4 files changed

Lines changed: 37 additions & 30 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,11 @@
6363
"run": "git reset --hard HEAD && git clean -fdx"
6464
},
6565
{
66-
"run": "deno install"
66+
"run": "deno install --frozen"
6767
},
6868
{
6969
"run": "deno task test"
7070
},
71-
{
72-
"run": "deno publish --dry-run --allow-slow-types"
73-
},
7471
{
7572
"run": "git reset --hard HEAD && git clean -fdx"
7673
},
@@ -143,14 +140,11 @@
143140
"run": "git reset --hard HEAD && git clean -fdx"
144141
},
145142
{
146-
"run": "deno install"
143+
"run": "deno install --frozen"
147144
},
148145
{
149146
"run": "deno task test"
150147
},
151-
{
152-
"run": "deno publish --dry-run --allow-slow-types"
153-
},
154148
{
155149
"run": "git reset --hard HEAD && git clean -fdx"
156150
},
@@ -223,14 +217,11 @@
223217
"run": "git reset --hard HEAD && git clean -fdx"
224218
},
225219
{
226-
"run": "deno install"
220+
"run": "deno install --frozen"
227221
},
228222
{
229223
"run": "deno task test"
230224
},
231-
{
232-
"run": "deno publish --dry-run --allow-slow-types"
233-
},
234225
{
235226
"run": "git reset --hard HEAD && git clean -fdx"
236227
},
@@ -303,14 +294,11 @@
303294
"run": "git reset --hard HEAD && git clean -fdx"
304295
},
305296
{
306-
"run": "deno install"
297+
"run": "deno install --frozen"
307298
},
308299
{
309300
"run": "deno task test"
310301
},
311-
{
312-
"run": "deno publish --dry-run --allow-slow-types"
313-
},
314302
{
315303
"run": "git reset --hard HEAD && git clean -fdx"
316304
},
@@ -383,14 +371,11 @@
383371
"run": "git reset --hard HEAD && git clean -fdx"
384372
},
385373
{
386-
"run": "deno install"
374+
"run": "deno install --frozen"
387375
},
388376
{
389377
"run": "deno task test"
390378
},
391-
{
392-
"run": "deno publish --dry-run --allow-slow-types"
393-
},
394379
{
395380
"run": "git reset --hard HEAD && git clean -fdx"
396381
},
@@ -460,14 +445,11 @@
460445
"run": "git reset --hard HEAD && git clean -fdx"
461446
},
462447
{
463-
"run": "deno install"
448+
"run": "deno install --frozen"
464449
},
465450
{
466451
"run": "deno task test"
467452
},
468-
{
469-
"run": "deno publish --dry-run --allow-slow-types"
470-
},
471453
{
472454
"run": "git reset --hard HEAD && git clean -fdx"
473455
},

deno.lock

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
"scripts": {
1818
"test": "tsc && fjs t",
1919
"start": "fjs r ./server.f.ts",
20-
"update": "fjs i",
20+
"update": "npx npm-check-updates -u && npm install && deno install && fjs i",
2121
"cov": "node --test --experimental-test-coverage --test-coverage-include=**/*.f.ts"
2222
},
2323
"dependencies": {
24-
"functionalscript": "^0.27.0"
24+
"functionalscript": "^0.28.0"
2525
},
2626
"devDependencies": {
2727
"typescript": "^6.0.3"

0 commit comments

Comments
 (0)