@ordergroove/smi-serve 1.3.9 → 1.3.10
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/smi-serve.js +5 -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.3.10](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.3.9...@ordergroove/smi-serve@1.3.10) (2024-03-31)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ordergroove/smi-serve
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.3.9](https://github.com/ordergroove/plush-toys/compare/@ordergroove/smi-serve@1.3.8...@ordergroove/smi-serve@1.3.9) (2024-02-15)
|
|
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.3.
|
|
3
|
+
"version": "1.3.10",
|
|
4
4
|
"description": "Utility to serve a SMI template locally",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Eugenio Lattanzio <eugenio.lattanzio@ordergroove.com>",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"ora": "^5.4.1",
|
|
33
33
|
"yargs": "^17.7.2"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "093da7aea4c7e25719bde371e5a1cccccd2c8067"
|
|
36
36
|
}
|
package/smi-serve.js
CHANGED
|
@@ -59,6 +59,10 @@ Platform: ${merchant.ecommerce_platform}
|
|
|
59
59
|
Env: ${args.env}\
|
|
60
60
|
`)
|
|
61
61
|
);
|
|
62
|
+
process.stdout.write(`\u001b[1mAttention\u001b[0m: The smi-serve tool reads and writes to your live published theme.
|
|
63
|
+
Alterations, additions, or deletions to the Subscription Manager will be visible to your customers
|
|
64
|
+
in real-time after you deploy.\n`);
|
|
65
|
+
|
|
62
66
|
if (args.verbose) console.log(args);
|
|
63
67
|
try {
|
|
64
68
|
await fn(args);
|
|
@@ -87,7 +91,7 @@ async function program() {
|
|
|
87
91
|
.command({
|
|
88
92
|
command: 'init',
|
|
89
93
|
alias: ['fetch'],
|
|
90
|
-
describe: 'Initialize the current directory with smi assets
|
|
94
|
+
describe: 'Initialize the current directory with smi assets from og rc3',
|
|
91
95
|
builder: y =>
|
|
92
96
|
y
|
|
93
97
|
.option('overwrite', {
|