@git.zone/cli 1.10.3 → 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.3',
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();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@git.zone/cli",
3
3
  "private": false,
4
- "version": "1.10.3",
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.3',
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();