compelem 0.2.0-beta → 0.2.2-beta

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compelem",
3
- "version": "0.2.0-beta",
3
+ "version": "0.2.2-beta",
4
4
  "description": "A modern, reactive, fast, lightweight and flexible lib for building web components",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -19,7 +19,8 @@
19
19
  ],
20
20
  "scripts": {
21
21
  "lint": "eslint src/**",
22
- "build": "rollup --config",
22
+ "prod": "rollup --config",
23
+ "dev": "rollup --config rollup.config.dev.js",
23
24
  "test": "rollup --config rollup.config.test.js --watch"
24
25
  },
25
26
  "devDependencies": {
package/utils.d.ts CHANGED
@@ -1,5 +1,7 @@
1
+ import { CompElem } from "./CompElem";
1
2
  export declare function showError(msg: string): void;
2
3
  export declare function showTagError(tagName: string, msg: string): void;
3
4
  export declare function showWarn(...args: unknown[]): void;
4
5
  export declare function showTagWarn(tagName: string, msg: string): void;
5
- export declare function toUpdatePath(varPath: string[]): string;
6
+ export declare function _toUpdatePath(varPath: string[]): string;
7
+ export declare function _getSuper(cls: CompElem): any;