@git.zone/cli 1.10.2 → 1.10.4

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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@git.zone/cli',
6
- version: '1.10.2',
6
+ version: '1.10.4',
7
7
  description: 'A CLI toolbelt to streamline local development cycles by using various gitzone utilities.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxlQUFlO0lBQ3JCLE9BQU8sRUFBRSxRQUFRO0lBQ2pCLFdBQVcsRUFBRSwyRkFBMkY7Q0FDekcsQ0FBQSJ9
@@ -15,7 +15,7 @@ export const run = async (projectArg) => {
15
15
  const publishModules = await tsPublishInstance.getModuleSubDirs(paths.cwd);
16
16
  for (const publishModule of Object.keys(publishModules)) {
17
17
  const publishConfig = publishModules[publishModule];
18
- tsconfigObject.compilerOptions.paths[`${publishConfig.name}`] = [`./${publishModule}/index.ts`];
18
+ tsconfigObject.compilerOptions.paths[`${publishConfig.name}`] = [`./${publishModule}/index.js`];
19
19
  }
20
20
  tsconfigSmartfile.setContentsFromString(JSON.stringify(tsconfigObject, null, 2));
21
21
  await tsconfigSmartfile.write();
@@ -21,10 +21,10 @@ export let run = async (writeArg = true) => {
21
21
  const formatGitignore = await import('./format.gitignore.js');
22
22
  await formatGitignore.run(project);
23
23
  // format TypeScript
24
- const formatPrettier = await import('./format.prettier.js');
25
- await formatPrettier.run(project);
26
24
  const formatTsConfig = await import('./format.tsconfig.js');
27
25
  await formatTsConfig.run(project);
26
+ const formatPrettier = await import('./format.prettier.js');
27
+ await formatPrettier.run(project);
28
28
  // format readme.md
29
29
  const formatReadme = await import('./format.readme.js');
30
30
  await formatReadme.run();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@git.zone/cli",
3
3
  "private": false,
4
- "version": "1.10.2",
4
+ "version": "1.10.4",
5
5
  "description": "A CLI toolbelt to streamline local development cycles by using various gitzone utilities.",
6
6
  "main": "dist_ts/index.ts",
7
7
  "typings": "dist_ts/index.d.ts",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@git.zone/cli',
6
- version: '1.10.2',
6
+ version: '1.10.4',
7
7
  description: 'A CLI toolbelt to streamline local development cycles by using various gitzone utilities.'
8
8
  }
@@ -17,7 +17,7 @@ export const run = async (projectArg: Project) => {
17
17
  const publishModules = await tsPublishInstance.getModuleSubDirs(paths.cwd);
18
18
  for (const publishModule of Object.keys(publishModules)) {
19
19
  const publishConfig = publishModules[publishModule];
20
- tsconfigObject.compilerOptions.paths[`${publishConfig.name}`] = [`./${publishModule}/index.ts`];
20
+ tsconfigObject.compilerOptions.paths[`${publishConfig.name}`] = [`./${publishModule}/index.js`];
21
21
  }
22
22
  tsconfigSmartfile.setContentsFromString(JSON.stringify(tsconfigObject, null, 2));
23
23
  await tsconfigSmartfile.write();
@@ -29,10 +29,10 @@ export let run = async (writeArg: boolean = true): Promise<any> => {
29
29
  await formatGitignore.run(project);
30
30
 
31
31
  // format TypeScript
32
- const formatPrettier = await import('./format.prettier.js');
33
- await formatPrettier.run(project);
34
32
  const formatTsConfig = await import('./format.tsconfig.js');
35
33
  await formatTsConfig.run(project);
34
+ const formatPrettier = await import('./format.prettier.js');
35
+ await formatPrettier.run(project);
36
36
 
37
37
  // format readme.md
38
38
  const formatReadme = await import('./format.readme.js');