functionalscript 0.0.490 → 0.0.491

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.
Files changed (2) hide show
  1. package/dev/test.mjs +0 -2
  2. package/package.json +3 -3
package/dev/test.mjs CHANGED
@@ -13,8 +13,6 @@ const performanceNow = state => [performance.now(), state]
13
13
  const main = async() => {
14
14
  const moduleMap = await loadModuleMap()
15
15
 
16
- // await import(self.Deno ? 'https://deno.land/std/node/fs/promises.ts' : 'node:fs/promises')
17
-
18
16
  /** @type {any} */
19
17
  const f = moduleMap['./dev/test/module.f.cjs'].exports
20
18
  f({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.490",
3
+ "version": "0.0.491",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "module.f.cjs",
6
6
  "scripts": {
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "homepage": "https://github.com/functionalscript/functionalscript#readme",
32
32
  "devDependencies": {
33
- "@types/node": "^18.11.9",
34
- "typescript": "^4.9.3"
33
+ "@types/node": "^18.11.15",
34
+ "typescript": "^4.9.4"
35
35
  }
36
36
  }