@visactor/vutils 0.9.0-alpha.0 → 0.9.0-alpha.2
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/cjs/index.js.map +1 -1
- package/es/index.js.map +1 -1
- package/package.json +16 -16
package/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kEAAyC;AAQhC,uBARF,uBAAY,CAQE;AAErB,2CAAyB;AAGzB,mDAAiC;AAGjC,wCAAsB;AAGtB,yCAAuB;AAGvB,0CAAwB;AAGxB,qDAAqC;AAGrC,6CAA2B;AAG3B,yCAAuB;AAGvB,mDAAmC;AAGnC,4CAA0B;AAE1B,yCAAuB;AAGvB,wCAAsB;
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kEAAyC;AAQhC,uBARF,uBAAY,CAQE;AAErB,2CAAyB;AAGzB,mDAAiC;AAGjC,wCAAsB;AAGtB,yCAAuB;AAGvB,0CAAwB;AAGxB,qDAAqC;AAGrC,6CAA2B;AAG3B,yCAAuB;AAGvB,mDAAmC;AAGnC,4CAA0B;AAE1B,yCAAuB;AAGvB,wCAAsB;AAEtB,wCAAsB","file":"index.js","sourcesContent":["import EventEmitter from 'eventemitter3';\n\n/**\n * A high performance event emitter\n * @see {@link https://github.com/primus/eventemitter3}\n * @memberof PIXI.utils\n * @class EventEmitter\n */\nexport { EventEmitter };\n\nexport * from './common';\n\n// data structure\nexport * from './data-structure';\n\n// algorithm\nexport * from './lru';\n\n// math\nexport * from './math';\n\n// angle\nexport * from './angle';\n\n// color\nexport * as ColorUtil from './color';\n\n// methods about graphics\nexport * from './graphics';\n\n// type\nexport * from './type';\n\n// log\nexport * as Logger from './logger';\n\n// padding\nexport * from './padding';\n\nexport * from './time';\n\n// dom\nexport * from './dom';\n\nexport * from './geo';\n"]}
|
package/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,eAAe,CAAC;AAQzC,OAAO,EAAE,YAAY,EAAE,CAAC;AAExB,cAAc,UAAU,CAAC;AAGzB,cAAc,kBAAkB,CAAC;AAGjC,cAAc,OAAO,CAAC;AAGtB,cAAc,QAAQ,CAAC;AAGvB,cAAc,SAAS,CAAC;AAGxB,OAAO,KAAK,SAAS,MAAM,SAAS,CAAC;AAGrC,cAAc,YAAY,CAAC;AAG3B,cAAc,QAAQ,CAAC;AAGvB,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AAGnC,cAAc,WAAW,CAAC;AAE1B,cAAc,QAAQ,CAAC;AAGvB,cAAc,OAAO,CAAC;
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,eAAe,CAAC;AAQzC,OAAO,EAAE,YAAY,EAAE,CAAC;AAExB,cAAc,UAAU,CAAC;AAGzB,cAAc,kBAAkB,CAAC;AAGjC,cAAc,OAAO,CAAC;AAGtB,cAAc,QAAQ,CAAC;AAGvB,cAAc,SAAS,CAAC;AAGxB,OAAO,KAAK,SAAS,MAAM,SAAS,CAAC;AAGrC,cAAc,YAAY,CAAC;AAG3B,cAAc,QAAQ,CAAC;AAGvB,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AAGnC,cAAc,WAAW,CAAC;AAE1B,cAAc,QAAQ,CAAC;AAGvB,cAAc,OAAO,CAAC;AAEtB,cAAc,OAAO,CAAC","file":"index.js","sourcesContent":["import EventEmitter from 'eventemitter3';\n\n/**\n * A high performance event emitter\n * @see {@link https://github.com/primus/eventemitter3}\n * @memberof PIXI.utils\n * @class EventEmitter\n */\nexport { EventEmitter };\n\nexport * from './common';\n\n// data structure\nexport * from './data-structure';\n\n// algorithm\nexport * from './lru';\n\n// math\nexport * from './math';\n\n// angle\nexport * from './angle';\n\n// color\nexport * as ColorUtil from './color';\n\n// methods about graphics\nexport * from './graphics';\n\n// type\nexport * from './type';\n\n// log\nexport * as Logger from './logger';\n\n// padding\nexport * from './padding';\n\nexport * from './time';\n\n// dom\nexport * from './dom';\n\nexport * from './geo';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vutils",
|
|
3
|
-
"version": "0.9.0-alpha.
|
|
3
|
+
"version": "0.9.0-alpha.2",
|
|
4
4
|
"main": "cjs/index.js",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"types": "es/index.d.ts",
|
|
@@ -16,29 +16,20 @@
|
|
|
16
16
|
"visual",
|
|
17
17
|
"utility"
|
|
18
18
|
],
|
|
19
|
-
"scripts": {
|
|
20
|
-
"compile": "tsc --noEmit",
|
|
21
|
-
"eslint": "eslint --debug --fix src/",
|
|
22
|
-
"build": "bundle",
|
|
23
|
-
"dev": "bundle --clean -f es -w",
|
|
24
|
-
"start": "vite ./vite",
|
|
25
|
-
"test": "jest",
|
|
26
|
-
"test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand"
|
|
27
|
-
},
|
|
28
19
|
"devDependencies": {
|
|
29
|
-
"@internal/bundler": "workspace:*",
|
|
30
|
-
"@internal/eslint-config": "workspace:*",
|
|
31
|
-
"@internal/ts-config": "workspace:*",
|
|
32
20
|
"@rushstack/eslint-patch": "~1.1.4",
|
|
33
21
|
"eslint": "~8.18.0",
|
|
34
22
|
"vite": "3.2.6",
|
|
35
|
-
"@internal/jest-config": "workspace:*",
|
|
36
23
|
"jest": "~29.5.0",
|
|
37
24
|
"@jest/globals": "~29.5.0",
|
|
38
25
|
"ts-jest": "~29.1.0",
|
|
39
26
|
"@types/jest": "~29.5.0",
|
|
40
27
|
"typescript": "4.9.5",
|
|
41
|
-
"@types/node": "*"
|
|
28
|
+
"@types/node": "*",
|
|
29
|
+
"@internal/jest-config": "0.0.1",
|
|
30
|
+
"@internal/ts-config": "0.0.1",
|
|
31
|
+
"@internal/bundler": "0.0.1",
|
|
32
|
+
"@internal/eslint-config": "0.0.1"
|
|
42
33
|
},
|
|
43
34
|
"dependencies": {
|
|
44
35
|
"eventemitter3": "^4.0.7",
|
|
@@ -47,5 +38,14 @@
|
|
|
47
38
|
},
|
|
48
39
|
"publishConfig": {
|
|
49
40
|
"access": "public"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"compile": "tsc --noEmit",
|
|
44
|
+
"eslint": "eslint --debug --fix src/",
|
|
45
|
+
"build": "bundle",
|
|
46
|
+
"dev": "bundle --clean -f es -w",
|
|
47
|
+
"start": "vite ./vite",
|
|
48
|
+
"test": "jest",
|
|
49
|
+
"test-check": "DEBUG=jest jest --forceExit --detectOpenHandles --silent false --verbose false --runInBand"
|
|
50
50
|
}
|
|
51
|
-
}
|
|
51
|
+
}
|