pixi.js 8.6.3-dev.8cdc402 → 8.6.3-dev.fa9ec30
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/dist/packages/advanced-blend-modes.js +1 -1
- package/dist/packages/advanced-blend-modes.min.js +1 -1
- package/dist/packages/math-extras.js +1 -1
- package/dist/packages/math-extras.min.js +1 -1
- package/dist/packages/unsafe-eval.js +1 -1
- package/dist/packages/unsafe-eval.min.js +1 -1
- package/dist/pixi.js +1 -1
- package/dist/pixi.min.js +1 -1
- package/dist/pixi.min.mjs +1 -1
- package/dist/pixi.mjs +1 -1
- package/dist/webworker.js +1 -1
- package/dist/webworker.min.js +1 -1
- package/dist/webworker.min.mjs +1 -1
- package/dist/webworker.mjs +1 -1
- package/package.json +7 -9
package/dist/pixi.js
CHANGED
package/dist/pixi.min.js
CHANGED
package/dist/pixi.min.mjs
CHANGED
package/dist/pixi.mjs
CHANGED
package/dist/webworker.js
CHANGED
package/dist/webworker.min.js
CHANGED
package/dist/webworker.min.mjs
CHANGED
package/dist/webworker.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pixi.js",
|
|
3
|
-
"version": "8.6.3-dev.
|
|
3
|
+
"version": "8.6.3-dev.fa9ec30",
|
|
4
4
|
"author": "PixiJS Team",
|
|
5
5
|
"homepage": "http://pixijs.com/",
|
|
6
6
|
"bugs": "https://github.com/pixijs/pixijs/issues",
|
|
@@ -21,22 +21,20 @@
|
|
|
21
21
|
"start": "run-s watch",
|
|
22
22
|
"clean": "run-s clean:*",
|
|
23
23
|
"clean:build": "rimraf \"{lib,dist,out}\" --glob",
|
|
24
|
-
"clean:index": "rimraf \"src/*/**/index.ts\" --glob",
|
|
25
24
|
"clean:uploads": "rimraf .pr_uploads .s3_uploads --glob",
|
|
26
25
|
"prebuild": "npm run clean",
|
|
27
|
-
"build": "run-s build:
|
|
26
|
+
"build": "run-s build:pkg build:rollup build:tsc build:dts build:dts-bundle",
|
|
28
27
|
"build:rollup": "npx rollup -c --failAfterWarnings",
|
|
29
28
|
"build:dts-bundle": "dts-bundle-generator --config dts.config.js",
|
|
30
29
|
"build:tsc": "tsc -p tsconfig.types.json",
|
|
31
|
-
"build:index": "ts-node --transpile-only ./scripts/index/index.ts",
|
|
30
|
+
"build:index": "ts-node --transpile-only ./scripts/index/index.ts --write",
|
|
32
31
|
"build:dts": "ts-node --transpile-only ./scripts/types/fixTypes.ts && copyfiles -u 1 \"src/**/*.d.ts\" lib/",
|
|
33
32
|
"build:pkg": "ts-node ./scripts/utils/exports.ts",
|
|
34
33
|
"dist": "run-s build docs && copyfiles -u 1 \"dist/**/*\" .s3_uploads/",
|
|
35
34
|
"prewatch": "npm run build",
|
|
36
|
-
"postbuild": "rimraf \"src/*/**/index.ts\" --glob",
|
|
37
35
|
"watch": "nodemon --watch \"./src/*\" --exec \"npm run watch:build\" -e ts,js,vert,frag,wgsl,d.ts --ignore \"index.ts\"",
|
|
38
36
|
"watch:lib": "cross-env LIB_ONLY=1 nodemon --watch \"./src/*\" --exec \"npm run watch:build\" -e ts,js,vert,frag,wgsl,d.ts --ignore \"index.ts\"",
|
|
39
|
-
"watch:build": "run-s build:
|
|
37
|
+
"watch:build": "run-s build:rollup build:tsc build:dts postbuild",
|
|
40
38
|
"test": "run-s test:unit test:scene",
|
|
41
39
|
"test:unit": "npx jest --silent --testPathIgnorePatterns=tests/visual",
|
|
42
40
|
"test:debug": "cross-env DEBUG_MODE=1 npx jest --testPathIgnorePatterns=tests/visual",
|
|
@@ -44,6 +42,7 @@
|
|
|
44
42
|
"test:scene": "npx jest --silent --testPathPattern=tests/visual",
|
|
45
43
|
"test:scene:debug": "cross-env DEBUG_MODE=1 npx jest --testPathPattern=tests/visual",
|
|
46
44
|
"test:types": "tsc --noEmit",
|
|
45
|
+
"test:index": "ts-node --transpile-only ./scripts/index/index.ts --check",
|
|
47
46
|
"docs": "mkdirp out && npm run docs:webdoc",
|
|
48
47
|
"docs:webdoc": "webdoc -R README.md",
|
|
49
48
|
"docs:watch": "nodemon --watch \"./src/*\" --exec \"npm run docs\" -e ts",
|
|
@@ -53,12 +52,11 @@
|
|
|
53
52
|
"prerelease": "run-s clean:build test dist",
|
|
54
53
|
"release": "ts-node ./scripts/release.ts",
|
|
55
54
|
"publish-ci": "npm publish",
|
|
56
|
-
"preprune": "run-s build:index",
|
|
57
55
|
"prune": "knip --exclude enumMembers --no-gitignore",
|
|
58
|
-
"ci:lint": "run-s lint test:types prune"
|
|
56
|
+
"ci:lint": "run-s lint test:types test:index prune"
|
|
59
57
|
},
|
|
60
58
|
"lint-staged": {
|
|
61
|
-
"
|
|
59
|
+
"!(src/**/index).{ts,js,mjs}": "npm run lint:fix --"
|
|
62
60
|
},
|
|
63
61
|
"dependencies": {
|
|
64
62
|
"@pixi/colord": "^2.9.6",
|