@faststore/cli 3.50.2 → 3.50.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.
Files changed (45) hide show
  1. package/README.md +8 -8
  2. package/dist/__mocks__/hcms.d.ts +1 -0
  3. package/dist/__mocks__/hcms.d.ts.map +1 -0
  4. package/dist/commands/build.d.ts +1 -0
  5. package/dist/commands/build.d.ts.map +1 -0
  6. package/dist/commands/cms-sync.d.ts +1 -0
  7. package/dist/commands/cms-sync.d.ts.map +1 -0
  8. package/dist/commands/create.d.ts +1 -0
  9. package/dist/commands/create.d.ts.map +1 -0
  10. package/dist/commands/dev.d.ts +1 -0
  11. package/dist/commands/dev.d.ts.map +1 -0
  12. package/dist/commands/generate-graphql.d.ts +1 -0
  13. package/dist/commands/generate-graphql.d.ts.map +1 -0
  14. package/dist/commands/start.d.ts +1 -0
  15. package/dist/commands/start.d.ts.map +1 -0
  16. package/dist/commands/test.d.ts +1 -0
  17. package/dist/commands/test.d.ts.map +1 -0
  18. package/dist/index.d.ts +1 -0
  19. package/dist/index.d.ts.map +1 -0
  20. package/dist/utils/commands.d.ts +1 -0
  21. package/dist/utils/commands.d.ts.map +1 -0
  22. package/dist/utils/createNextjsPages.d.ts +1 -0
  23. package/dist/utils/createNextjsPages.d.ts.map +1 -0
  24. package/dist/utils/dependencies.d.ts +1 -0
  25. package/dist/utils/dependencies.d.ts.map +1 -0
  26. package/dist/utils/directory.d.ts +1 -0
  27. package/dist/utils/directory.d.ts.map +1 -0
  28. package/dist/utils/directory.test.d.ts +1 -0
  29. package/dist/utils/directory.test.d.ts.map +1 -0
  30. package/dist/utils/generate.d.ts +1 -0
  31. package/dist/utils/generate.d.ts.map +1 -0
  32. package/dist/utils/hcms.d.ts +1 -0
  33. package/dist/utils/hcms.d.ts.map +1 -0
  34. package/dist/utils/hcms.test.d.ts +1 -0
  35. package/dist/utils/hcms.test.d.ts.map +1 -0
  36. package/dist/utils/logger.d.ts +1 -0
  37. package/dist/utils/logger.d.ts.map +1 -0
  38. package/dist/utils/plugins.d.ts +1 -0
  39. package/dist/utils/plugins.d.ts.map +1 -0
  40. package/dist/utils/runCommandSync.d.ts +1 -0
  41. package/dist/utils/runCommandSync.d.ts.map +1 -0
  42. package/dist/utils/templates/myAccountPage.d.ts +1 -0
  43. package/dist/utils/templates/myAccountPage.d.ts.map +1 -0
  44. package/oclif.manifest.json +1 -1
  45. package/package.json +3 -3
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.50.2 linux-x64 node-v18.20.8
33
+ @faststore/cli/3.50.3 linux-x64 node-v18.20.8
34
34
  $ faststore --help [COMMAND]
35
35
  USAGE
36
36
  $ faststore COMMAND
@@ -65,7 +65,7 @@ FLAGS
65
65
  registry.
66
66
  ```
67
67
 
68
- _See code: [dist/commands/build.js](https://github.com/vtex/faststore/blob/v3.50.2/dist/commands/build.js)_
68
+ _See code: [dist/commands/build.js](https://github.com/vtex/faststore/blob/v3.50.3/dist/commands/build.js)_
69
69
 
70
70
  ## `faststore cms-sync [PATH]`
71
71
 
@@ -80,7 +80,7 @@ FLAGS
80
80
  -d, --dry-run
81
81
  ```
82
82
 
83
- _See code: [dist/commands/cms-sync.js](https://github.com/vtex/faststore/blob/v3.50.2/dist/commands/cms-sync.js)_
83
+ _See code: [dist/commands/cms-sync.js](https://github.com/vtex/faststore/blob/v3.50.3/dist/commands/cms-sync.js)_
84
84
 
85
85
  ## `faststore create [PATH]`
86
86
 
@@ -100,7 +100,7 @@ EXAMPLES
100
100
  $ yarn faststore create discovery
101
101
  ```
102
102
 
103
- _See code: [dist/commands/create.js](https://github.com/vtex/faststore/blob/v3.50.2/dist/commands/create.js)_
103
+ _See code: [dist/commands/create.js](https://github.com/vtex/faststore/blob/v3.50.3/dist/commands/create.js)_
104
104
 
105
105
  ## `faststore dev [ACCOUNT] [PATH] [PORT]`
106
106
 
@@ -114,7 +114,7 @@ ARGUMENTS
114
114
  PORT The port where FastStore should run. Defaults to 3000.
115
115
  ```
116
116
 
117
- _See code: [dist/commands/dev.js](https://github.com/vtex/faststore/blob/v3.50.2/dist/commands/dev.js)_
117
+ _See code: [dist/commands/dev.js](https://github.com/vtex/faststore/blob/v3.50.3/dist/commands/dev.js)_
118
118
 
119
119
  ## `faststore generate-graphql [PATH]`
120
120
 
@@ -126,7 +126,7 @@ ARGUMENTS
126
126
  PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
127
127
  ```
128
128
 
129
- _See code: [dist/commands/generate-graphql.js](https://github.com/vtex/faststore/blob/v3.50.2/dist/commands/generate-graphql.js)_
129
+ _See code: [dist/commands/generate-graphql.js](https://github.com/vtex/faststore/blob/v3.50.3/dist/commands/generate-graphql.js)_
130
130
 
131
131
  ## `faststore help [COMMAND]`
132
132
 
@@ -160,7 +160,7 @@ ARGUMENTS
160
160
  PORT The port where FastStore should run. Defaults to 3000.
161
161
  ```
162
162
 
163
- _See code: [dist/commands/start.js](https://github.com/vtex/faststore/blob/v3.50.2/dist/commands/start.js)_
163
+ _See code: [dist/commands/start.js](https://github.com/vtex/faststore/blob/v3.50.3/dist/commands/start.js)_
164
164
 
165
165
  ## `faststore test [PATH]`
166
166
 
@@ -172,5 +172,5 @@ ARGUMENTS
172
172
  PATH The path where the FastStore being tested is. Defaults to cwd.
173
173
  ```
174
174
 
175
- _See code: [dist/commands/test.js](https://github.com/vtex/faststore/blob/v3.50.2/dist/commands/test.js)_
175
+ _See code: [dist/commands/test.js](https://github.com/vtex/faststore/blob/v3.50.3/dist/commands/test.js)_
176
176
  <!-- commandsstop -->
@@ -59,3 +59,4 @@ export declare const customContentTypesWithDuplicates: {
59
59
  isSingleton: boolean;
60
60
  configurationSchemaSets: never[];
61
61
  }[];
62
+ //# sourceMappingURL=hcms.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hcms.d.ts","sourceRoot":"","sources":["../../src/__mocks__/hcms.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY;;;;;;;GAiDxB,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;GAiBhC,CAAA;AAED,eAAO,MAAM,iBAAiB;;;;;;;GAkB7B,CAAA;AAED,eAAO,MAAM,4BAA4B;;;;;;;GAGxC,CAAA;AAED,eAAO,MAAM,gBAAgB;;;;;;;;;;IAsD5B,CAAA;AAED,eAAO,MAAM,wBAAwB;;;;;GAapC,CAAA;AAED,eAAO,MAAM,qBAAqB;;;;;GAajC,CAAA;AAED,eAAO,MAAM,gCAAgC;;;;;GAG5C,CAAA"}
@@ -9,3 +9,4 @@ export default class Build extends Command {
9
9
  };
10
10
  run(): Promise<void>;
11
11
  }
12
+ //# sourceMappingURL=build.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../src/commands/build.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAS,MAAM,aAAa,CAAA;AAU5C,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,OAAO;IACxC,MAAM,CAAC,IAAI;;;QAWV;IAED,MAAM,CAAC,KAAK;;MAKX;IAEK,GAAG;CAmCV"}
@@ -10,3 +10,4 @@ export default class CmsSync extends Command {
10
10
  }[];
11
11
  run(): Promise<import("child_process").ChildProcess | undefined>;
12
12
  }
13
+ //# sourceMappingURL=cms-sync.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cms-sync.d.ts","sourceRoot":"","sources":["../../src/commands/cms-sync.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,OAAO,EAAS,MAAM,aAAa,CAAA;AAM5C,MAAM,CAAC,OAAO,OAAO,OAAQ,SAAQ,OAAO;IAC1C,MAAM,CAAC,KAAK;;MAEX;IAED,MAAM,CAAC,IAAI;;;QAMV;IAEK,GAAG;CAmBV"}
@@ -8,3 +8,4 @@ export default class Create extends Command {
8
8
  static examples: string[];
9
9
  run(): Promise<void>;
10
10
  }
11
+ //# sourceMappingURL=create.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../src/commands/create.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAGrC,MAAM,CAAC,OAAO,OAAO,MAAO,SAAQ,OAAO;IACzC,MAAM,CAAC,IAAI;;;QAMV;IAED,MAAM,CAAC,WAAW,SACiD;IAEnE,MAAM,CAAC,QAAQ,WAAwC;IAEjD,GAAG;CA2BV"}
@@ -6,3 +6,4 @@ export default class Dev extends Command {
6
6
  }[];
7
7
  run(): Promise<unknown>;
8
8
  }
9
+ //# sourceMappingURL=dev.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dev.d.ts","sourceRoot":"","sources":["../../src/commands/dev.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AA6GrC,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,OAAO;IACtC,MAAM,CAAC,IAAI;;;QAeV;IAEK,GAAG;CA2CV"}
@@ -9,3 +9,4 @@ export default class GenerateGraphql extends Command {
9
9
  }[];
10
10
  run(): Promise<void>;
11
11
  }
12
+ //# sourceMappingURL=generate-graphql.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-graphql.d.ts","sourceRoot":"","sources":["../../src/commands/generate-graphql.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAS,MAAM,aAAa,CAAA;AAQ5C,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,OAAO;IAClD,MAAM,CAAC,KAAK;;MAEX;IAED,MAAM,CAAC,IAAI;;;QAMV;IAEK,GAAG;CAwDV"}
@@ -7,3 +7,4 @@ export default class Start extends Command {
7
7
  }[];
8
8
  run(): Promise<import("child_process").ChildProcess>;
9
9
  }
10
+ //# sourceMappingURL=start.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAMrC,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,OAAO;IACxC,MAAM,CAAC,IAAI;;;QAeV;IAEK,GAAG;CAmBV"}
@@ -6,3 +6,4 @@ export default class Test extends Command {
6
6
  }[];
7
7
  run(): Promise<unknown>;
8
8
  }
9
+ //# sourceMappingURL=test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/commands/test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AA8CrC,MAAM,CAAC,OAAO,OAAO,IAAK,SAAQ,OAAO;IACvC,MAAM,CAAC,IAAI;;;QAMV;IAEK,GAAG;CAkCV"}
package/dist/index.d.ts CHANGED
@@ -13,3 +13,4 @@ export declare const commands: {
13
13
  'cms-sync': typeof CmsSync;
14
14
  test: typeof Test;
15
15
  };
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAA;AAEjC,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAA;AACrD,OAAO,EAAE,OAAO,IAAI,GAAG,EAAE,MAAM,gBAAgB,CAAA;AAC/C,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,kBAAkB,CAAA;AACnD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,kBAAkB,CAAA;AACnD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,qBAAqB,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,iBAAiB,CAAA;AAEjD,eAAO,MAAM,QAAQ;;;;;;;CAOpB,CAAA"}
@@ -1 +1,2 @@
1
1
  export declare function getPreferredPackageManager(): string;
2
+ //# sourceMappingURL=commands.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../../src/utils/commands.ts"],"names":[],"mappings":"AAGA,wBAAgB,0BAA0B,WASzC"}
@@ -1 +1,2 @@
1
1
  export declare function createNextJsPages(basePath: string): void;
2
+ //# sourceMappingURL=createNextjsPages.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createNextjsPages.d.ts","sourceRoot":"","sources":["../../src/utils/createNextjsPages.ts"],"names":[],"mappings":"AAwDA,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,QA8BjD"}
@@ -5,3 +5,4 @@ type InstallDependenciesOptions = {
5
5
  };
6
6
  export declare function installDependencies({ dependencies, cwd, errorMessage, }: InstallDependenciesOptions): void;
7
7
  export {};
8
+ //# sourceMappingURL=dependencies.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../src/utils/dependencies.ts"],"names":[],"mappings":"AAGA,KAAK,0BAA0B,GAAG;IAChC,YAAY,EAAE,MAAM,EAAE,CAAA;IACtB,GAAG,EAAE,MAAM,CAAA;IACX,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,wBAAgB,mBAAmB,CAAC,EAClC,YAAY,EACZ,GAAG,EACH,YAAY,GACb,EAAE,0BAA0B,QAU5B"}
@@ -22,3 +22,4 @@ export declare const withBasePath: (basepath: string) => {
22
22
  coreDir: string;
23
23
  coreCMSDir: string;
24
24
  };
25
+ //# sourceMappingURL=directory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"directory.d.ts","sourceRoot":"","sources":["../../src/utils/directory.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY,aAAc,MAAM;;qCAwDH,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;CAyCjD,CAAA"}
@@ -1 +1,2 @@
1
1
  export {};
2
+ //# sourceMappingURL=directory.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"directory.test.d.ts","sourceRoot":"","sources":["../../src/utils/directory.test.ts"],"names":[],"mappings":""}
@@ -4,3 +4,4 @@ interface GenerateOptions {
4
4
  }
5
5
  export declare function generate(options: GenerateOptions): Promise<void>;
6
6
  export {};
7
+ //# sourceMappingURL=generate.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate.d.ts","sourceRoot":"","sources":["../../src/utils/generate.ts"],"names":[],"mappings":"AAsBA,UAAU,eAAe;IACvB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;CACjB;AA4eD,wBAAsB,QAAQ,CAAC,OAAO,EAAE,eAAe,iBA6BtD"}
@@ -22,3 +22,4 @@ export declare function splitCustomDefinitions(coreDefinitions: ContentTypeOrSec
22
22
  export declare function dedupeAndMergeDefinitions(coreDefinitions: ContentTypeOrSectionDefinition[], duplicates: ContentTypeOrSectionDefinition[], primaryIdentifier: 'id' | 'name'): ContentTypeOrSectionDefinition[];
23
23
  export declare function mergeCMSFile(fileName: string, basePath: string): Promise<void>;
24
24
  export declare function mergeCMSFiles(basePath: string): Promise<void>;
25
+ //# sourceMappingURL=hcms.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hcms.d.ts","sourceRoot":"","sources":["../../src/utils/hcms.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,8BAA8B;IAC7C,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IACzB,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAChC,uBAAuB,CAAC,EAAE,sBAAsB,EAAE,CAAA;CACnD;AAED,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,cAAc,CAAC,EAAE,KAAK,CAAC;QACrB,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KACjC,CAAC,CAAA;CACH;AAED,wBAAgB,sBAAsB,CACpC,eAAe,EAAE,8BAA8B,EAAE,EACjD,iBAAiB,EAAE,8BAA8B,EAAE,EACnD,iBAAiB,EAAE,IAAI,GAAG,MAAM;;;EA0BjC;AAED,wBAAgB,yBAAyB,CACvC,eAAe,EAAE,8BAA8B,EAAE,EACjD,UAAU,EAAE,8BAA8B,EAAE,EAC5C,iBAAiB,EAAE,IAAI,GAAG,MAAM,oCA+BjC;AAqBD,wBAAsB,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,iBA2EpE;AAED,wBAAsB,aAAa,CAAC,QAAQ,EAAE,MAAM,iBAOnD"}
@@ -1 +1,2 @@
1
1
  export {};
2
+ //# sourceMappingURL=hcms.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hcms.test.d.ts","sourceRoot":"","sources":["../../src/utils/hcms.test.ts"],"names":[],"mappings":""}
@@ -1 +1,2 @@
1
1
  export declare const logger: Console;
2
+ //# sourceMappingURL=logger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../../src/utils/logger.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,SAWjB,CAAA"}
@@ -22,3 +22,4 @@ export declare const getPluginsList: (basePath: string) => Promise<Plugin[]>;
22
22
  export declare function addPluginsSections(basePath: string, plugins: Plugin[]): Promise<void>;
23
23
  export declare function addPluginsOverrides(basePath: string, plugins: Plugin[]): Promise<void>;
24
24
  export declare const installPlugins: (basePath: string) => Promise<void>;
25
+ //# sourceMappingURL=plugins.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../src/utils/plugins.ts"],"names":[],"mappings":"AAWA,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,OAAO,CAAA;IAClB,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,SAAS,GAAG;IACtB,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,CAAC,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,CAAA;KAAE,CAAA;IACnD,IAAI,CAAC,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC,CAAA;KAAE,CAAA;CAClD,CAAA;AAED,MAAM,MAAM,MAAM,GACd,MAAM,GACN;IACE,CAAC,UAAU,EAAE,MAAM,GAAG,YAAY,CAAA;CACnC,CAAA;AAkBL,eAAO,MAAM,aAAa,WAAY,MAAM,WAM3C,CAAA;AAeD,eAAO,MAAM,cAAc,aAAoB,MAAM,KAAG,QAAQ,MAAM,EAAE,CAWvE,CAAA;AAwHD,wBAAsB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,iBAkC3E;AAED,wBAAsB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,iBAoC5E;AAwED,eAAO,MAAM,cAAc,aAAoB,MAAM,kBAUpD,CAAA"}
@@ -4,3 +4,4 @@ export declare const runCommandSync: ({ cmd, errorMessage, throws, cwd, }: {
4
4
  throws: 'warning' | 'error';
5
5
  cwd?: string | undefined;
6
6
  }) => void;
7
+ //# sourceMappingURL=runCommandSync.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"runCommandSync.d.ts","sourceRoot":"","sources":["../../src/utils/runCommandSync.ts"],"names":[],"mappings":"AA2CA,eAAO,MAAM,cAAc;SAMpB,MAAM;kBACG,MAAM;YACZ,SAAS,GAAG,OAAO;;UA0B5B,CAAA"}
@@ -1 +1,2 @@
1
1
  export declare const myAccountPageTemplate: (pagePath: string) => string;
2
+ //# sourceMappingURL=myAccountPage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"myAccountPage.d.ts","sourceRoot":"","sources":["../../../src/utils/templates/myAccountPage.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,qBAAqB,aAAc,MAAM,WAkCrD,CAAA"}
@@ -1 +1 @@
1
- {"version":"3.50.2","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."}]}}}
1
+ {"version":"3.50.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.50.2",
3
+ "version": "3.50.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.50.2",
21
+ "@faststore/core": "^3.50.3",
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": "a46c9bba0e9b26d5ca9bfba44c7a36595c3b43e0"
73
+ "gitHead": "b934a294bf04c85960c8e84fec6a12525f9dccaf"
74
74
  }