@shopware-ag/dive 1.16.12 → 1.16.13
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/dive.cjs +4 -4
- package/build/dive.cjs.map +1 -1
- package/build/dive.js +4 -4
- package/build/dive.js.map +1 -1
- package/package.json +3 -3
- package/src/dive.ts +1 -1
package/build/dive.js
CHANGED
|
@@ -2956,7 +2956,7 @@ DIVEInfo._supportsWebXR = null;
|
|
|
2956
2956
|
// package.json
|
|
2957
2957
|
var package_default = {
|
|
2958
2958
|
name: "@shopware-ag/dive",
|
|
2959
|
-
version: "1.16.
|
|
2959
|
+
version: "1.16.13",
|
|
2960
2960
|
description: "Shopware Spatial Framework",
|
|
2961
2961
|
type: "module",
|
|
2962
2962
|
main: "./build/dive.cjs",
|
|
@@ -3011,8 +3011,8 @@ var package_default = {
|
|
|
3011
3011
|
"typescript-eslint": "^7.7.1"
|
|
3012
3012
|
},
|
|
3013
3013
|
scripts: {
|
|
3014
|
-
build: "tsup",
|
|
3015
|
-
dev: "tsup --watch",
|
|
3014
|
+
build: "tsup --env.DIVE_NODE_ENV production",
|
|
3015
|
+
dev: "tsup --watch --env.DIVE_NODE_ENV development",
|
|
3016
3016
|
lint: "eslint",
|
|
3017
3017
|
"lint:actions": "yarn lint:actions:transpile && yarn lint:actions:check && yarn lint:actions:cleanup",
|
|
3018
3018
|
"lint:actions:transpile": "yarn tsc --resolveJsonModule --esModuleInterop ci/lint/lint-actions.ts && mv ci/lint/lint-actions.js ci/lint/lint-actions.cjs",
|
|
@@ -3254,7 +3254,7 @@ var DIVE = class _DIVE {
|
|
|
3254
3254
|
}
|
|
3255
3255
|
};
|
|
3256
3256
|
console.log(
|
|
3257
|
-
`DIVE ${package_default.version} initialized ${
|
|
3257
|
+
`DIVE ${package_default.version} initialized ${false ? "in development mode" : ""}`
|
|
3258
3258
|
);
|
|
3259
3259
|
}
|
|
3260
3260
|
Dispose() {
|