@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.cjs
CHANGED
|
@@ -2938,7 +2938,7 @@ DIVEInfo._supportsWebXR = null;
|
|
|
2938
2938
|
// package.json
|
|
2939
2939
|
var package_default = {
|
|
2940
2940
|
name: "@shopware-ag/dive",
|
|
2941
|
-
version: "1.16.
|
|
2941
|
+
version: "1.16.13",
|
|
2942
2942
|
description: "Shopware Spatial Framework",
|
|
2943
2943
|
type: "module",
|
|
2944
2944
|
main: "./build/dive.cjs",
|
|
@@ -2993,8 +2993,8 @@ var package_default = {
|
|
|
2993
2993
|
"typescript-eslint": "^7.7.1"
|
|
2994
2994
|
},
|
|
2995
2995
|
scripts: {
|
|
2996
|
-
build: "tsup",
|
|
2997
|
-
dev: "tsup --watch",
|
|
2996
|
+
build: "tsup --env.DIVE_NODE_ENV production",
|
|
2997
|
+
dev: "tsup --watch --env.DIVE_NODE_ENV development",
|
|
2998
2998
|
lint: "eslint",
|
|
2999
2999
|
"lint:actions": "yarn lint:actions:transpile && yarn lint:actions:check && yarn lint:actions:cleanup",
|
|
3000
3000
|
"lint:actions:transpile": "yarn tsc --resolveJsonModule --esModuleInterop ci/lint/lint-actions.ts && mv ci/lint/lint-actions.js ci/lint/lint-actions.cjs",
|
|
@@ -3236,7 +3236,7 @@ var DIVE = class _DIVE {
|
|
|
3236
3236
|
}
|
|
3237
3237
|
};
|
|
3238
3238
|
console.log(
|
|
3239
|
-
`DIVE ${package_default.version} initialized ${
|
|
3239
|
+
`DIVE ${package_default.version} initialized ${false ? "in development mode" : ""}`
|
|
3240
3240
|
);
|
|
3241
3241
|
}
|
|
3242
3242
|
Dispose() {
|