@ordergroove/smi-serve 1.9.1 → 1.9.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/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/src/partials/entrypoint.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.9.2](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.9.1...@ordergroove/smi-serve@1.9.2) (2024-11-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ordergroove/smi-serve
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.9.1](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.9.0...@ordergroove/smi-serve@1.9.1) (2024-10-28)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @ordergroove/smi-serve
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ordergroove/smi-serve",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.2",
|
|
4
4
|
"description": "Utility to serve a Subscription Manager template locally",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Eugenio Lattanzio <eugenio.lattanzio@ordergroove.com>",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"memfs": "^4.8.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "52a143c231e0cf2e0264554fe07150d4ba697bea"
|
|
39
39
|
}
|
|
@@ -22,7 +22,8 @@ if (!window.og?.smi) {
|
|
|
22
22
|
core_settings: {
|
|
23
23
|
// enable discount codes so they're fetching when the SM starts up
|
|
24
24
|
// when deployed, this value is automatically read from theme-settings.json, but in smi-serve we need to set it directly
|
|
25
|
-
discount_codes_enabled: true
|
|
25
|
+
discount_codes_enabled: true,
|
|
26
|
+
sm_tracking_enabled: true
|
|
26
27
|
}
|
|
27
28
|
},
|
|
28
29
|
mainTemplate
|