runtime-compiler 2.1.3 → 2.1.4

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 (3) hide show
  1. package/package.json +1 -1
  2. package/scope.d.ts +1 -1
  3. package/scope.js +1 -1
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"runtime-compiler","version":"2.1.3","description":"Universal compiler system","keywords":[],"repository":{},"homepage":"","license":"MIT","type":"module","exports":{"./call":"./call.js","./config/loader/hydrate":"./config/loader/hydrate.js","./config":"./config/index.js",".":"./index.js","./config/mode/build":"./config/mode/build.js","./scope":"./scope.js","./config/mode/hydrate":"./config/mode/hydrate.js","./utils":"./utils.js","./config/loader/build":"./config/loader/build.js"}}
1
+ {"name":"runtime-compiler","version":"2.1.4","description":"Universal compiler system","keywords":[],"repository":{},"homepage":"","license":"MIT","type":"module","exports":{"./call":"./call.js","./config/loader/build":"./config/loader/build.js",".":"./index.js","./config":"./config/index.js","./config/mode/hydrate":"./config/mode/hydrate.js","./scope":"./scope.js","./utils":"./utils.js","./config/loader/hydrate":"./config/loader/hydrate.js","./config/mode/build":"./config/mode/build.js"}}
package/scope.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export type Scope = [nextId: number];
2
2
  export declare const init: () => Scope;
3
- export declare const declareNextId: (scope: Scope) => string;
3
+ export declare const nextId: (scope: Scope) => string;
4
4
  export declare const idCount: (scope: Scope) => number;
package/scope.js CHANGED
@@ -1 +1 @@
1
- export let init=()=>[0];export let declareNextId=e=>`let l`+ e[0]++;export let idCount=e=>e[0];
1
+ export let init=()=>[0];export let nextId=e=>`l`+ e[0]++;export let idCount=e=>e[0];