@ordergroove/smi-serve 1.9.13 → 1.9.15
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 +16 -0
- package/README.md +1 -1
- package/package.json +3 -3
- package/smi-serve.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.15](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.9.14...@ordergroove/smi-serve@1.9.15) (2025-04-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ordergroove/smi-serve
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.9.14](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.9.13...@ordergroove/smi-serve@1.9.14) (2025-02-19)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @ordergroove/smi-serve
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.9.13](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.9.12...@ordergroove/smi-serve@1.9.13) (2025-02-03)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @ordergroove/smi-serve
|
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ Presents you with a list of your Subscription Manager themes including your live
|
|
|
40
40
|
|
|
41
41
|
### push-theme
|
|
42
42
|
|
|
43
|
-
Publishes your template changes to your selected Subscription Manager theme. If the theme you're pushing is your live theme, your changes will be published to your live site immediately!
|
|
43
|
+
Publishes your template changes to your selected Subscription Manager theme. If the theme you're pushing is your live theme, your changes will be published to your live site immediately! You can add the -y flag to automatically agree to the confirmation prompt.
|
|
44
44
|
|
|
45
45
|
### select-merchant
|
|
46
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ordergroove/smi-serve",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.15",
|
|
4
4
|
"description": "Utility to serve a Subscription Manager template locally",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Eugenio Lattanzio <eugenio.lattanzio@ordergroove.com>",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/ordergroove/plush-toys/tree/master/packages/smi-serve#readme",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@ordergroove/smi-precompile": "^1.10.
|
|
24
|
+
"@ordergroove/smi-precompile": "^1.10.8",
|
|
25
25
|
"adm-zip": "^0.5.10",
|
|
26
26
|
"esbuild": "^0.19.2",
|
|
27
27
|
"esbuild-plugin-less": "^1.2.4",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"memfs": "^4.8.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "9cd9c9e993bbe5d76b4ad77e98ce114a06e07a33"
|
|
39
39
|
}
|
package/smi-serve.js
CHANGED
|
@@ -122,6 +122,12 @@ async function program() {
|
|
|
122
122
|
.command({
|
|
123
123
|
command: 'push-theme',
|
|
124
124
|
describe: 'Push the theme data for the selected merchant',
|
|
125
|
+
builder: y =>
|
|
126
|
+
y.option('yes', {
|
|
127
|
+
alias: 'y',
|
|
128
|
+
type: 'boolean',
|
|
129
|
+
description: 'Skip confirmation prompt'
|
|
130
|
+
}),
|
|
125
131
|
handler: wrapHandler(cliPushTheme)
|
|
126
132
|
})
|
|
127
133
|
.option('verbose', {
|