@neurodevs/meta-node 0.19.8 → 0.19.9

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.
@@ -14,25 +14,29 @@ export default class NpmWorkspaceTypeChecker {
14
14
  return new (this.Class ?? this)(workspacePath);
15
15
  }
16
16
  async run() {
17
- console.info('Starting type checking... \n');
18
17
  const repoNames = await this.readDir(this.workspacePath, {
19
18
  withFileTypes: true,
20
19
  });
21
- await Promise.all(repoNames.map(async (repoName) => {
20
+ const repoPaths = (await Promise.all(repoNames.map(async (repoName) => {
22
21
  if (!repoName.isDirectory()) {
23
22
  return;
24
23
  }
25
- const fullRepoPath = join(this.workspacePath, repoName.name);
26
- const repoContents = await this.readDir(fullRepoPath);
24
+ const repoPath = join(this.workspacePath, repoName.name);
25
+ const repoContents = await this.readDir(repoPath);
27
26
  if (!repoContents.includes('tsconfig.json')) {
28
27
  return;
29
28
  }
30
- console.info(`Checking types for ${fullRepoPath}...`);
29
+ return repoPath;
30
+ }))).filter((p) => Boolean(p));
31
+ console.info(`\nChecking types for the following repos:\n\n${repoPaths
32
+ .map((r) => ` ${r}`)
33
+ .join('\n')}\n`);
34
+ await Promise.all(repoPaths.map(async (repoPath) => {
31
35
  try {
32
- await this.exec('npx tsc --noEmit', { cwd: fullRepoPath });
36
+ await this.exec('npx tsc --noEmit', { cwd: repoPath });
33
37
  }
34
38
  catch {
35
- console.error(`Type errors found in ${fullRepoPath}!`);
39
+ console.error(`Type errors found in ${repoPath}!`);
36
40
  }
37
41
  }));
38
42
  console.info('\nType checking completed!\n');
@@ -1 +1 @@
1
- {"version":3,"file":"NpmWorkspaceTypeChecker.js","sourceRoot":"","sources":["../../src/impl/NpmWorkspaceTypeChecker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAA;AAC1C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAErC,MAAM,CAAC,OAAO,OAAO,uBAAuB;IACjC,MAAM,CAAC,KAAK,CAAkC;IAC9C,MAAM,CAAC,OAAO,GAAG,OAAO,CAAA;IACxB,MAAM,CAAC,IAAI,GAAG,SAAS,CAAC,QAAQ,CAAC,CAAA;IAEhC,aAAa,CAAQ;IAE7B,YAAsB,aAAqB;QACvC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAA;IACtC,CAAC;IAEM,MAAM,CAAC,MAAM,CAAC,aAAqB;QACtC,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC,aAAa,CAAC,CAAA;IAClD,CAAC;IAEM,KAAK,CAAC,GAAG;QACZ,OAAO,CAAC,IAAI,CAAC,8BAA8B,CAAC,CAAA;QAC5C,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,EAAE;YACrD,aAAa,EAAE,IAAI;SACtB,CAAC,CAAA;QAEF,MAAM,OAAO,CAAC,GAAG,CACb,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE;YAC7B,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,EAAE,CAAC;gBAC1B,OAAM;YACV,CAAC;YAED,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAA;YAE5D,MAAM,YAAY,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAA;YAErD,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,CAAC;gBAC1C,OAAM;YACV,CAAC;YAED,OAAO,CAAC,IAAI,CAAC,sBAAsB,YAAY,KAAK,CAAC,CAAA;YAErD,IAAI,CAAC;gBACD,MAAM,IAAI,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,GAAG,EAAE,YAAY,EAAE,CAAC,CAAA;YAC9D,CAAC;YAAC,MAAM,CAAC;gBACL,OAAO,CAAC,KAAK,CAAC,wBAAwB,YAAY,GAAG,CAAC,CAAA;YAC1D,CAAC;QACL,CAAC,CAAC,CACL,CAAA;QAED,OAAO,CAAC,IAAI,CAAC,8BAA8B,CAAC,CAAA;IAChD,CAAC;IAED,IAAY,OAAO;QACf,OAAO,uBAAuB,CAAC,OAAO,CAAA;IAC1C,CAAC;IACD,IAAY,IAAI;QACZ,OAAO,uBAAuB,CAAC,IAAI,CAAA;IACvC,CAAC"}
1
+ {"version":3,"file":"NpmWorkspaceTypeChecker.js","sourceRoot":"","sources":["../../src/impl/NpmWorkspaceTypeChecker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAA;AAC1C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAErC,MAAM,CAAC,OAAO,OAAO,uBAAuB;IACjC,MAAM,CAAC,KAAK,CAAkC;IAC9C,MAAM,CAAC,OAAO,GAAG,OAAO,CAAA;IACxB,MAAM,CAAC,IAAI,GAAG,SAAS,CAAC,QAAQ,CAAC,CAAA;IAEhC,aAAa,CAAQ;IAE7B,YAAsB,aAAqB;QACvC,IAAI,CAAC,aAAa,GAAG,aAAa,CAAA;IACtC,CAAC;IAEM,MAAM,CAAC,MAAM,CAAC,aAAqB;QACtC,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC,aAAa,CAAC,CAAA;IAClD,CAAC;IAEM,KAAK,CAAC,GAAG;QACZ,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,EAAE;YACrD,aAAa,EAAE,IAAI;SACtB,CAAC,CAAA;QAEF,MAAM,SAAS,GAAG,CACd,MAAM,OAAO,CAAC,GAAG,CACb,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE;YAC7B,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,EAAE,CAAC;gBAC1B,OAAM;YACV,CAAC;YAED,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAA;YACxD,MAAM,YAAY,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAA;YAEjD,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,CAAC;gBAC1C,OAAM;YACV,CAAC;YACD,OAAO,QAAQ,CAAA;QACnB,CAAC,CAAC,CACL,CACJ,CAAC,MAAM,CAAC,CAAC,CAAC,EAAe,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;QAExC,OAAO,CAAC,IAAI,CACR,gDAAgD,SAAS;aACpD,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC;aACpB,IAAI,CAAC,IAAI,CAAC,IAAI,CACtB,CAAA;QAED,MAAM,OAAO,CAAC,GAAG,CACb,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE;YAC7B,IAAI,CAAC;gBACD,MAAM,IAAI,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,CAAC,CAAA;YAC1D,CAAC;YAAC,MAAM,CAAC;gBACL,OAAO,CAAC,KAAK,CAAC,wBAAwB,QAAQ,GAAG,CAAC,CAAA;YACtD,CAAC;QACL,CAAC,CAAC,CACL,CAAA;QAED,OAAO,CAAC,IAAI,CAAC,8BAA8B,CAAC,CAAA;IAChD,CAAC;IAED,IAAY,OAAO;QACf,OAAO,uBAAuB,CAAC,OAAO,CAAA;IAC1C,CAAC;IACD,IAAY,IAAI;QACZ,OAAO,uBAAuB,CAAC,IAAI,CAAA;IACvC,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import NpmWorkspaceTypeChecker from '../impl/NpmWorkspaceTypeChecker.js';
2
+ const checker = NpmWorkspaceTypeChecker.Create('../');
3
+ await checker.run();
4
+ //# sourceMappingURL=runNpmWorkspaceTypeChecker.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"runNpmWorkspaceTypeChecker.js","sourceRoot":"","sources":["../../src/scripts/runNpmWorkspaceTypeChecker.ts"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,MAAM,oCAAoC,CAAA;AAExE,MAAM,OAAO,GAAG,uBAAuB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAA;AACrD,MAAM,OAAO,CAAC,GAAG,EAAE,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neurodevs/meta-node",
3
- "version": "0.19.8",
3
+ "version": "0.19.9",
4
4
  "description": "Meta-layer utilities for maintaining Node.js package ecosystems.",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -19,31 +19,40 @@ export default class NpmWorkspaceTypeChecker implements WorkspaceTypeChecker {
19
19
  }
20
20
 
21
21
  public async run() {
22
- console.info('Starting type checking... \n')
23
22
  const repoNames = await this.readDir(this.workspacePath, {
24
23
  withFileTypes: true,
25
24
  })
26
25
 
27
- await Promise.all(
28
- repoNames.map(async (repoName) => {
29
- if (!repoName.isDirectory()) {
30
- return
31
- }
32
-
33
- const fullRepoPath = join(this.workspacePath, repoName.name)
26
+ const repoPaths = (
27
+ await Promise.all(
28
+ repoNames.map(async (repoName) => {
29
+ if (!repoName.isDirectory()) {
30
+ return
31
+ }
34
32
 
35
- const repoContents = await this.readDir(fullRepoPath)
33
+ const repoPath = join(this.workspacePath, repoName.name)
34
+ const repoContents = await this.readDir(repoPath)
36
35
 
37
- if (!repoContents.includes('tsconfig.json')) {
38
- return
39
- }
36
+ if (!repoContents.includes('tsconfig.json')) {
37
+ return
38
+ }
39
+ return repoPath
40
+ })
41
+ )
42
+ ).filter((p): p is string => Boolean(p))
40
43
 
41
- console.info(`Checking types for ${fullRepoPath}...`)
44
+ console.info(
45
+ `\nChecking types for the following repos:\n\n${repoPaths
46
+ .map((r) => ` ${r}`)
47
+ .join('\n')}\n`
48
+ )
42
49
 
50
+ await Promise.all(
51
+ repoPaths.map(async (repoPath) => {
43
52
  try {
44
- await this.exec('npx tsc --noEmit', { cwd: fullRepoPath })
53
+ await this.exec('npx tsc --noEmit', { cwd: repoPath })
45
54
  } catch {
46
- console.error(`Type errors found in ${fullRepoPath}!`)
55
+ console.error(`Type errors found in ${repoPath}!`)
47
56
  }
48
57
  })
49
58
  )
@@ -0,0 +1,4 @@
1
+ import NpmWorkspaceTypeChecker from '../impl/NpmWorkspaceTypeChecker.js'
2
+
3
+ const checker = NpmWorkspaceTypeChecker.Create('../')
4
+ await checker.run()