functionalscript 0.0.323 → 0.0.324

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.
@@ -32,7 +32,9 @@ const compileMap = {
32
32
  /** @type {function_.Compile} */
33
33
  const compile = source => compileMap[source] ?? ['error', 'invalid source']
34
34
 
35
- /** @type {{ readonly [k in string]?: { readonly dependencies: { readonly [k in string]?: string }, files:{ readonly [k in string]?: string } }}} */
35
+ /** @typedef {{ readonly [k in string]?: string }} StringMap */
36
+
37
+ /** @type {{ readonly [k in string]?: { readonly dependencies: StringMap, files: StringMap }}} */
36
38
  const packageMap = {
37
39
  '': {
38
40
  dependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.323",
3
+ "version": "0.0.324",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "index.js",
6
6
  "scripts": {