@faststore/cli 3.44.1 → 3.44.3

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/README.md CHANGED
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
30
30
  $ faststore COMMAND
31
31
  running command...
32
32
  $ faststore (--version)
33
- @faststore/cli/3.44.1 linux-x64 node-v18.20.8
33
+ @faststore/cli/3.44.3 linux-x64 node-v18.20.8
34
34
  $ faststore --help [COMMAND]
35
35
  USAGE
36
36
  $ faststore COMMAND
@@ -54,14 +54,18 @@ USAGE
54
54
 
55
55
  ```
56
56
  USAGE
57
- $ faststore build [ACCOUNT] [PATH]
57
+ $ faststore build [ACCOUNT] [PATH] [--no-verify]
58
58
 
59
59
  ARGUMENTS
60
60
  ACCOUNT The account for which the Discovery is running. Currently noop.
61
61
  PATH The path where the FastStore being built is. Defaults to cwd.
62
+
63
+ FLAGS
64
+ --no-verify Skips verification of faststore dependencies version string to prevent usage of packages outside npm
65
+ registry.
62
66
  ```
63
67
 
64
- _See code: [dist/commands/build.js](https://github.com/vtex/faststore/blob/v3.44.1/dist/commands/build.js)_
68
+ _See code: [dist/commands/build.js](https://github.com/vtex/faststore/blob/v3.44.3/dist/commands/build.js)_
65
69
 
66
70
  ## `faststore cms-sync [PATH]`
67
71
 
@@ -76,7 +80,7 @@ FLAGS
76
80
  -d, --dry-run
77
81
  ```
78
82
 
79
- _See code: [dist/commands/cms-sync.js](https://github.com/vtex/faststore/blob/v3.44.1/dist/commands/cms-sync.js)_
83
+ _See code: [dist/commands/cms-sync.js](https://github.com/vtex/faststore/blob/v3.44.3/dist/commands/cms-sync.js)_
80
84
 
81
85
  ## `faststore create [PATH]`
82
86
 
@@ -96,7 +100,7 @@ EXAMPLES
96
100
  $ yarn faststore create discovery
97
101
  ```
98
102
 
99
- _See code: [dist/commands/create.js](https://github.com/vtex/faststore/blob/v3.44.1/dist/commands/create.js)_
103
+ _See code: [dist/commands/create.js](https://github.com/vtex/faststore/blob/v3.44.3/dist/commands/create.js)_
100
104
 
101
105
  ## `faststore dev [ACCOUNT] [PATH] [PORT]`
102
106
 
@@ -110,7 +114,7 @@ ARGUMENTS
110
114
  PORT The port where FastStore should run. Defaults to 3000.
111
115
  ```
112
116
 
113
- _See code: [dist/commands/dev.js](https://github.com/vtex/faststore/blob/v3.44.1/dist/commands/dev.js)_
117
+ _See code: [dist/commands/dev.js](https://github.com/vtex/faststore/blob/v3.44.3/dist/commands/dev.js)_
114
118
 
115
119
  ## `faststore generate-graphql [PATH]`
116
120
 
@@ -122,7 +126,7 @@ ARGUMENTS
122
126
  PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
123
127
  ```
124
128
 
125
- _See code: [dist/commands/generate-graphql.js](https://github.com/vtex/faststore/blob/v3.44.1/dist/commands/generate-graphql.js)_
129
+ _See code: [dist/commands/generate-graphql.js](https://github.com/vtex/faststore/blob/v3.44.3/dist/commands/generate-graphql.js)_
126
130
 
127
131
  ## `faststore help [COMMAND]`
128
132
 
@@ -156,7 +160,7 @@ ARGUMENTS
156
160
  PORT The port where FastStore should run. Defaults to 3000.
157
161
  ```
158
162
 
159
- _See code: [dist/commands/start.js](https://github.com/vtex/faststore/blob/v3.44.1/dist/commands/start.js)_
163
+ _See code: [dist/commands/start.js](https://github.com/vtex/faststore/blob/v3.44.3/dist/commands/start.js)_
160
164
 
161
165
  ## `faststore test [PATH]`
162
166
 
@@ -168,5 +172,5 @@ ARGUMENTS
168
172
  PATH The path where the FastStore being tested is. Defaults to cwd.
169
173
  ```
170
174
 
171
- _See code: [dist/commands/test.js](https://github.com/vtex/faststore/blob/v3.44.1/dist/commands/test.js)_
175
+ _See code: [dist/commands/test.js](https://github.com/vtex/faststore/blob/v3.44.3/dist/commands/test.js)_
172
176
  <!-- commandsstop -->
@@ -4,5 +4,8 @@ export default class Build extends Command {
4
4
  name: string;
5
5
  description: string;
6
6
  }[];
7
+ static flags: {
8
+ "no-verify": import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
9
+ };
7
10
  run(): Promise<void>;
8
11
  }
@@ -9,6 +9,7 @@ const fs_extra_1 = require("fs-extra");
9
9
  const commands_1 = require("../utils/commands");
10
10
  const directory_1 = require("../utils/directory");
11
11
  const generate_1 = require("../utils/generate");
12
+ const logger_1 = require("../utils/logger");
12
13
  class Build extends core_1.Command {
13
14
  static args = [
14
15
  {
@@ -20,9 +21,18 @@ class Build extends core_1.Command {
20
21
  description: 'The path where the FastStore being built is. Defaults to cwd.',
21
22
  },
22
23
  ];
24
+ static flags = {
25
+ ['no-verify']: core_1.Flags.boolean({
26
+ description: 'Skips verification of faststore dependencies version string to prevent usage of packages outside npm registry.',
27
+ }),
28
+ };
23
29
  async run() {
24
- const { args } = await this.parse(Build);
30
+ const { args, flags } = await this.parse(Build);
25
31
  const basePath = args.path ?? process.cwd();
32
+ if (!flags['no-verify']) {
33
+ const invalidPackages = await checkDeps(basePath);
34
+ invalidPackages.forEach((pkg) => logger_1.logger.warn(`${chalk_1.default.yellow('warning')} - Dependency ${pkg} has invalid version signature. Please use a semver like ^1.0.0 (check the official releases on https://github.com/vtex/faststore)`));
35
+ }
26
36
  const { tmpDir } = (0, directory_1.withBasePath)(basePath);
27
37
  await (0, generate_1.generate)({ setup: true, basePath });
28
38
  const packageManager = (0, commands_1.getPreferredPackageManager)();
@@ -79,4 +89,20 @@ async function copyResources(basePath) {
79
89
  await copyResource(`${tmpDir}/public`, `${userDir}/public`);
80
90
  }
81
91
  }
92
+ async function checkDeps(basePath) {
93
+ const packageJsonPath = `${basePath}/package.json`;
94
+ if (!(0, fs_1.existsSync)(packageJsonPath))
95
+ throw new Error(`package.json not found at ${packageJsonPath}`);
96
+ const { devDependencies = {}, dependencies = {}, peerDependencies = {}, } = await Promise.resolve(`${packageJsonPath}`).then(s => tslib_1.__importStar(require(s)));
97
+ const allDeps = Object.assign({}, peerDependencies, devDependencies, dependencies);
98
+ const invalidPackages = [];
99
+ Object.entries(allDeps).forEach(([pkg, version]) => {
100
+ if (/^@faststore\/.+/i.test(pkg) === false)
101
+ return;
102
+ if (version && /^(http|https|git):.+/.test(version) === true) {
103
+ invalidPackages.push(pkg);
104
+ }
105
+ });
106
+ return invalidPackages;
107
+ }
82
108
  //# sourceMappingURL=build.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"build.js","sourceRoot":"","sources":["../../src/commands/build.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"build.js","sourceRoot":"","sources":["../../src/commands/build.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":"3.44.1","commands":{"build":{"id":"build","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"account","description":"The account for which the Discovery is running. Currently noop."},{"name":"path","description":"The path where the FastStore being built is. Defaults to cwd."}]},"cms-sync":{"id":"cms-sync","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{"dry-run":{"name":"dry-run","type":"boolean","char":"d","allowNo":false}},"args":[{"name":"path","description":"The path where the FastStore being synched with the CMS is. Defaults to cwd."}]},"create":{"id":"create","description":"Creates a discovery folder based on the starter.store template.","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"examples":["$ yarn faststore create discovery"],"flags":{},"args":[{"name":"path","description":"The path where the Discovery folder will be created. Defaults to ./discovery."}]},"dev":{"id":"dev","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"account","description":"The account for which the Discovery is running. Currently noop."},{"name":"path","description":"The path where the FastStore being run is. Defaults to cwd."},{"name":"port","description":"The port where FastStore should run. Defaults to 3000."}]},"generate-graphql":{"id":"generate-graphql","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{"core":{"name":"core","type":"boolean","char":"c","hidden":true,"allowNo":false}},"args":[{"name":"path","description":"The path where the FastStore GraphQL customization is. Defaults to cwd."}]},"start":{"id":"start","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"account","description":"The account for which the Discovery is running. Currently noop."},{"name":"path","description":"The path where the FastStore being run is. Defaults to cwd."},{"name":"port","description":"The port where FastStore should run. Defaults to 3000."}]},"test":{"id":"test","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"path","description":"The path where the FastStore being tested is. Defaults to cwd."}]}}}
1
+ {"version":"3.44.3","commands":{"build":{"id":"build","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{"no-verify":{"name":"no-verify","type":"boolean","description":"Skips verification of faststore dependencies version string to prevent usage of packages outside npm registry.","allowNo":false}},"args":[{"name":"account","description":"The account for which the Discovery is running. Currently noop."},{"name":"path","description":"The path where the FastStore being built is. Defaults to cwd."}]},"cms-sync":{"id":"cms-sync","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{"dry-run":{"name":"dry-run","type":"boolean","char":"d","allowNo":false}},"args":[{"name":"path","description":"The path where the FastStore being synched with the CMS is. Defaults to cwd."}]},"create":{"id":"create","description":"Creates a discovery folder based on the starter.store template.","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"examples":["$ yarn faststore create discovery"],"flags":{},"args":[{"name":"path","description":"The path where the Discovery folder will be created. Defaults to ./discovery."}]},"dev":{"id":"dev","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"account","description":"The account for which the Discovery is running. Currently noop."},{"name":"path","description":"The path where the FastStore being run is. Defaults to cwd."},{"name":"port","description":"The port where FastStore should run. Defaults to 3000."}]},"generate-graphql":{"id":"generate-graphql","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{"core":{"name":"core","type":"boolean","char":"c","hidden":true,"allowNo":false}},"args":[{"name":"path","description":"The path where the FastStore GraphQL customization is. Defaults to cwd."}]},"start":{"id":"start","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"account","description":"The account for which the Discovery is running. Currently noop."},{"name":"path","description":"The path where the FastStore being run is. Defaults to cwd."},{"name":"port","description":"The port where FastStore should run. Defaults to 3000."}]},"test":{"id":"test","strict":true,"pluginName":"@faststore/cli","pluginAlias":"@faststore/cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"path","description":"The path where the FastStore being tested is. Defaults to cwd."}]}}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faststore/cli",
3
- "version": "3.44.1",
3
+ "version": "3.44.3",
4
4
  "description": "FastStore CLI",
5
5
  "author": "Emerson Laurentino @emersonlaurentino",
6
6
  "bin": {
@@ -18,7 +18,7 @@
18
18
  ],
19
19
  "dependencies": {
20
20
  "@antfu/ni": "^0.21.12",
21
- "@faststore/core": "^3.44.1",
21
+ "@faststore/core": "^3.44.2",
22
22
  "@inquirer/prompts": "^5.1.2",
23
23
  "@oclif/core": "^1.16.4",
24
24
  "@oclif/plugin-help": "^5",
@@ -70,5 +70,5 @@
70
70
  "oclif"
71
71
  ],
72
72
  "types": "dist/index.d.ts",
73
- "gitHead": "783095fca4ad01b1c9eacf41119767a35411c2ed"
73
+ "gitHead": "b92b3916286cbd6db963a11b71d50ff451bccf5d"
74
74
  }