@visactor/vrender-core 0.21.12-alpha.3 → 0.21.12-alpha.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.
@@ -729,5 +729,4 @@ class AnimateGroup1 extends animate_1.ACustomAnimate {
729
729
  }
730
730
  }
731
731
 
732
- exports.AnimateGroup1 = AnimateGroup1;
733
- //# sourceMappingURL=custom-animate.js.map
732
+ exports.AnimateGroup1 = AnimateGroup1;
@@ -288,4 +288,5 @@ const multiToOneMorph = (fromGraphics, toGraphic, animationConfig) => {
288
288
  }
289
289
  };
290
290
 
291
- exports.multiToOneMorph = multiToOneMorph;
291
+ exports.multiToOneMorph = multiToOneMorph;
292
+ //# sourceMappingURL=morphing.js.map
@@ -706,5 +706,4 @@ export class AnimateGroup1 extends ACustomAnimate {
706
706
  ratio = easingFunc(ratio), a.onUpdate(end, ratio, out);
707
707
  })), this.updating = !1);
708
708
  }
709
- }
710
- //# sourceMappingURL=custom-animate.js.map
709
+ }
@@ -291,4 +291,5 @@ export const multiToOneMorph = (fromGraphics, toGraphic, animationConfig) => {
291
291
  otherAttrs: otherAttrs
292
292
  }, null !== (_b = null == animationConfig ? void 0 : animationConfig.duration) && void 0 !== _b ? _b : DefaultMorphingAnimateConfig.duration, null !== (_c = null == animationConfig ? void 0 : animationConfig.easing) && void 0 !== _c ? _c : DefaultMorphingAnimateConfig.easing));
293
293
  }
294
- };
294
+ };
295
+ //# sourceMappingURL=morphing.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vrender-core",
3
- "version": "0.21.12-alpha.3",
3
+ "version": "0.21.12-alpha.4",
4
4
  "description": "",
5
5
  "sideEffects": [
6
6
  "./src/modules.ts",
@@ -15,27 +15,11 @@
15
15
  "es",
16
16
  "dist"
17
17
  ],
18
- "scripts": {
19
- "compile": "tsc --noEmit",
20
- "eslint": "eslint --debug --fix src/",
21
- "build": "cross-env DEBUG='Bundler*' bundle --clean",
22
- "build-umd": "cross-env DEBUG='Bundler*' bundle --clean -f umd",
23
- "dev": "cross-env DEBUG='Bundler*' bundle --clean -f es -w",
24
- "start": "vite ./__tests__/browser",
25
- "test": "jest",
26
- "test-live": "npm run test-watch __tests__/unit/theme/line.test.ts",
27
- "test-watch": "cross-env DEBUG_MODE=1 jest --watch",
28
- "test-cov": "jest -w 16 --coverage",
29
- "build:spec-types": "rm -rf ./spec-types && tsc -p ./tsconfig.spec.json --declaration --emitDeclarationOnly --outDir ./spec-types"
30
- },
31
18
  "dependencies": {
32
19
  "color-convert": "2.0.1",
33
20
  "@visactor/vutils": "~0.19.3"
34
21
  },
35
22
  "devDependencies": {
36
- "@internal/bundler": "workspace:*",
37
- "@internal/eslint-config": "workspace:*",
38
- "@internal/ts-config": "workspace:*",
39
23
  "@rushstack/eslint-patch": "~1.1.4",
40
24
  "react": "^18.0.0",
41
25
  "react-dom": "^18.0.0",
@@ -50,7 +34,10 @@
50
34
  "eslint": "~8.18.0",
51
35
  "vite": "3.2.6",
52
36
  "typescript": "4.9.5",
53
- "cross-env": "^7.0.3"
37
+ "cross-env": "^7.0.3",
38
+ "@internal/bundler": "0.0.1",
39
+ "@internal/eslint-config": "0.0.1",
40
+ "@internal/ts-config": "0.0.1"
54
41
  },
55
42
  "keywords": [
56
43
  "VisActor",
@@ -78,5 +65,18 @@
78
65
  },
79
66
  "publishConfig": {
80
67
  "access": "public"
68
+ },
69
+ "scripts": {
70
+ "compile": "tsc --noEmit",
71
+ "eslint": "eslint --debug --fix src/",
72
+ "build": "cross-env DEBUG='Bundler*' bundle --clean",
73
+ "build-umd": "cross-env DEBUG='Bundler*' bundle --clean -f umd",
74
+ "dev": "cross-env DEBUG='Bundler*' bundle --clean -f es -w",
75
+ "start": "vite ./__tests__/browser",
76
+ "test": "jest",
77
+ "test-live": "npm run test-watch __tests__/unit/theme/line.test.ts",
78
+ "test-watch": "cross-env DEBUG_MODE=1 jest --watch",
79
+ "test-cov": "jest -w 16 --coverage",
80
+ "build:spec-types": "rm -rf ./spec-types && tsc -p ./tsconfig.spec.json --declaration --emitDeclarationOnly --outDir ./spec-types"
81
81
  }
82
- }
82
+ }