ohzi-core 9.5.0 → 9.5.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/build/index.module.js +1 -1
- package/build/index.module.js.map +1 -1
- package/package.json +23 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ohzi-core",
|
|
3
|
-
"version": "9.5.
|
|
3
|
+
"version": "9.5.2",
|
|
4
4
|
"description": "OHZI Core Library",
|
|
5
5
|
"source": "src/index.js",
|
|
6
6
|
"module": "build/index.module.js",
|
|
@@ -13,9 +13,19 @@
|
|
|
13
13
|
"package.json"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
+
"preinstall": "yarn setup-submodules && yarn update-submodules && yarn config-hooks",
|
|
17
|
+
"setup-submodules": "yarn setup-pit-submodule ",
|
|
18
|
+
"setup-pit-submodule": "git submodule update --init pit",
|
|
19
|
+
|
|
20
|
+
"update-submodules": "yarn update-pit",
|
|
21
|
+
"update-pit": "node update_submodule.mjs pit-js pit",
|
|
22
|
+
|
|
23
|
+
"config-hooks": "yarn config-core-hooks && yarn config-submodule-hooks",
|
|
24
|
+
"config-core-hooks": "git config core.hooksPath git_hooks",
|
|
25
|
+
"config-submodule-hooks": "yarn config-pit-hooks",
|
|
26
|
+
"config-pit-hooks": "cd pit && git config core.hooksPath git_hooks && cd ..",
|
|
27
|
+
|
|
16
28
|
"build": "rollup -c",
|
|
17
|
-
"preinstall": "yarn config-hooks",
|
|
18
|
-
"config-hooks": "git config core.hooksPath git_hooks",
|
|
19
29
|
"create-tag": "cross-var git tag -a \"v$npm_package_version\" -m \"Release Version $npm_package_version\" && cross-var git push origin \"v$npm_package_version\"",
|
|
20
30
|
"update-version": "cross-var echo \"v$npm_package_version\" > .version",
|
|
21
31
|
"fix-syntax": "standardx --fix",
|
|
@@ -43,7 +53,7 @@
|
|
|
43
53
|
"registry": "https://registry.npmjs.org/"
|
|
44
54
|
},
|
|
45
55
|
"dependencies": {
|
|
46
|
-
"pit-js": "
|
|
56
|
+
"pit-js": "2.0.1",
|
|
47
57
|
"three": "0.148.0"
|
|
48
58
|
},
|
|
49
59
|
"devDependencies": {
|
|
@@ -54,5 +64,13 @@
|
|
|
54
64
|
"rollup-plugin-terser": "^7.0.2",
|
|
55
65
|
"standardx": "^7.0.0",
|
|
56
66
|
"typescript": "^4.4.3"
|
|
57
|
-
}
|
|
67
|
+
},
|
|
68
|
+
"standardx": {
|
|
69
|
+
"ignore": [
|
|
70
|
+
"/pit/"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"workspaces": [
|
|
74
|
+
"pit"
|
|
75
|
+
]
|
|
58
76
|
}
|