functionalscript 0.28.0 → 0.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fs/ci/bun/module.f.js +1 -1
- package/package.json +3 -3
package/fs/ci/bun/module.f.js
CHANGED
|
@@ -16,7 +16,7 @@ const installBun = installOnWindowsArm({
|
|
|
16
16
|
});
|
|
17
17
|
export const bunSteps = (extra) => (v, a) => clean([
|
|
18
18
|
installBun(v)(a),
|
|
19
|
-
test({ run: 'bun install' }),
|
|
19
|
+
test({ run: 'bun install --frozen-lockfile' }),
|
|
20
20
|
test({ run: 'bun test --timeout 20000' }),
|
|
21
21
|
...extra,
|
|
22
22
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "functionalscript",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"**/*.js",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"cov": "node --test --experimental-test-coverage --test-coverage-include=**/module.f.ts",
|
|
14
14
|
"start": "node ./fs/fjs/module.ts",
|
|
15
15
|
"ci-update": "node ./fs/fjs/module.ts ci",
|
|
16
|
-
"update": "npx npm-check-updates -u && npm install && deno install && npm run ci-update",
|
|
16
|
+
"update": "npx npm-check-updates -u && npm install && deno install && bun install && npm run ci-update",
|
|
17
17
|
"index-html": "node ./fs/fjs/module.ts r ./fs/website/module.f.ts",
|
|
18
|
-
"website": "npm run prepack &&npm run index-html"
|
|
18
|
+
"website": "npm run prepack && npm run index-html"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=24"
|