functionalscript 0.0.357 → 0.0.360

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.
@@ -0,0 +1,24 @@
1
+ name: Bun CI
2
+
3
+ on:
4
+ push:
5
+ pull_request:
6
+
7
+ # export BUN_INSTALL="/Users/sergeyshandar/.bun"
8
+ # export PATH="$BUN_INSTALL/bin:$PATH"
9
+
10
+ jobs:
11
+ build:
12
+
13
+ runs-on: ubuntu-latest
14
+
15
+ env:
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - run: curl https://bun.sh/install | bash
19
+ # - env:
20
+ # BUN_INSTALL: /Users/sergeyshandar/.bun
21
+ # - env:
22
+ # PATH: $BUN_INSTALL/bin:$PATH
23
+ - run: bun install
24
+ - run: bun test
@@ -0,0 +1,17 @@
1
+ name: Deno CI
2
+
3
+ on:
4
+ push:
5
+ pull_request:
6
+
7
+ jobs:
8
+ build:
9
+
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: denoland/setup-deno@v1
15
+ with:
16
+ deno-version: v1.x
17
+ - run: deno run --unstable --compat --allow-read --allow-env ./test.f.js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.357",
3
+ "version": "0.0.360",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "main.f.js",
6
6
  "scripts": {