@xylabs/ts-scripts-yarn3 2.12.13 → 2.12.15

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 (44) hide show
  1. package/dist/.tsconfig.build.cjs.tsbuildinfo +1 -1
  2. package/dist/.tsconfig.build.esm.tsbuildinfo +1 -1
  3. package/dist/cjs/actions/package/compile-cjs.d.ts.map +1 -1
  4. package/dist/cjs/actions/package/compile-cjs.js +4 -0
  5. package/dist/cjs/actions/package/compile-cjs.js.map +1 -1
  6. package/dist/cjs/actions/package/compile-esm.d.ts.map +1 -1
  7. package/dist/cjs/actions/package/compile-esm.js +4 -0
  8. package/dist/cjs/actions/package/compile-esm.js.map +1 -1
  9. package/dist/cjs/lib/xy/xyBuildCommands.js +6 -6
  10. package/dist/cjs/lib/xy/xyBuildCommands.js.map +1 -1
  11. package/dist/cjs/lib/xy/xyCommonCommands.js +11 -11
  12. package/dist/cjs/lib/xy/xyCommonCommands.js.map +1 -1
  13. package/dist/cjs/lib/xy/xyDeployCommands.js +4 -4
  14. package/dist/cjs/lib/xy/xyDeployCommands.js.map +1 -1
  15. package/dist/cjs/lib/xy/xyInstallCommands.js +4 -4
  16. package/dist/cjs/lib/xy/xyInstallCommands.js.map +1 -1
  17. package/dist/cjs/lib/xy/xyLintCommands.js +5 -5
  18. package/dist/cjs/lib/xy/xyLintCommands.js.map +1 -1
  19. package/dist/esm/actions/package/compile-cjs.d.ts.map +1 -1
  20. package/dist/esm/actions/package/compile-cjs.js +4 -0
  21. package/dist/esm/actions/package/compile-cjs.js.map +1 -1
  22. package/dist/esm/actions/package/compile-esm.d.ts.map +1 -1
  23. package/dist/esm/actions/package/compile-esm.js +4 -0
  24. package/dist/esm/actions/package/compile-esm.js.map +1 -1
  25. package/dist/esm/lib/xy/xyBuildCommands.js +6 -6
  26. package/dist/esm/lib/xy/xyBuildCommands.js.map +1 -1
  27. package/dist/esm/lib/xy/xyCommonCommands.js +11 -11
  28. package/dist/esm/lib/xy/xyCommonCommands.js.map +1 -1
  29. package/dist/esm/lib/xy/xyDeployCommands.js +4 -4
  30. package/dist/esm/lib/xy/xyDeployCommands.js.map +1 -1
  31. package/dist/esm/lib/xy/xyInstallCommands.js +4 -4
  32. package/dist/esm/lib/xy/xyInstallCommands.js.map +1 -1
  33. package/dist/esm/lib/xy/xyLintCommands.js +5 -5
  34. package/dist/esm/lib/xy/xyLintCommands.js.map +1 -1
  35. package/dist/tsconfig.build.cjs.tsbuildinfo +1 -1
  36. package/dist/tsconfig.build.esm.tsbuildinfo +1 -1
  37. package/package.json +3 -3
  38. package/src/actions/package/compile-cjs.ts +6 -0
  39. package/src/actions/package/compile-esm.ts +6 -0
  40. package/src/lib/xy/xyBuildCommands.ts +6 -6
  41. package/src/lib/xy/xyCommonCommands.ts +11 -11
  42. package/src/lib/xy/xyDeployCommands.ts +4 -4
  43. package/src/lib/xy/xyInstallCommands.ts +4 -4
  44. package/src/lib/xy/xyLintCommands.ts +5 -5
@@ -27,7 +27,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
27
27
  })
28
28
  },
29
29
  (argv) => {
30
- if (argv.verbose) console.info(`License: ${argv.package ?? 'all'}`)
30
+ if (argv.verbose) console.log(`License: ${argv.package ?? 'all'}`)
31
31
  process.exitCode = license()
32
32
  },
33
33
  )
@@ -40,7 +40,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
40
40
  })
41
41
  },
42
42
  (argv) => {
43
- if (argv.verbose) console.info('Dead')
43
+ if (argv.verbose) console.log('Dead')
44
44
  process.exitCode = dead()
45
45
  },
46
46
  )
@@ -53,7 +53,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
53
53
  })
54
54
  },
55
55
  (argv) => {
56
- if (argv.verbose) console.info(`Checking Dependencies: ${argv.package ?? 'all'}`)
56
+ if (argv.verbose) console.log(`Checking Dependencies: ${argv.package ?? 'all'}`)
57
57
  process.exitCode = deps({ incremental: !!argv.incremental, pkg: argv.package as string })
58
58
  },
59
59
  )
@@ -66,7 +66,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
66
66
  })
67
67
  },
68
68
  (argv) => {
69
- if (argv.verbose) console.info(`Generating TypeDocs: ${argv.package ?? 'all'}`)
69
+ if (argv.verbose) console.log(`Generating TypeDocs: ${argv.package ?? 'all'}`)
70
70
  process.exitCode = genDocs({ incremental: !!argv.incremental, pkg: argv.package as string })
71
71
  },
72
72
  )
@@ -77,7 +77,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
77
77
  return yargs
78
78
  },
79
79
  (argv) => {
80
- if (argv.verbose) console.info('Gitlint')
80
+ if (argv.verbose) console.log('Gitlint')
81
81
  process.exitCode = argv.fix ? gitlintFix() : gitlint()
82
82
  },
83
83
  )
@@ -88,7 +88,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
88
88
  return yargs
89
89
  },
90
90
  (argv) => {
91
- if (argv.verbose) console.info('Testing')
91
+ if (argv.verbose) console.log('Testing')
92
92
  process.exitCode = test()
93
93
  },
94
94
  )
@@ -101,7 +101,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
101
101
  })
102
102
  },
103
103
  (argv) => {
104
- if (argv.verbose) console.info(`TsconfigGen: ${argv.package ?? 'all'}`)
104
+ if (argv.verbose) console.log(`TsconfigGen: ${argv.package ?? 'all'}`)
105
105
  process.exitCode = tsconfigGen({ target: argv.target as 'esm' | 'cjs' })
106
106
  },
107
107
  )
@@ -112,7 +112,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
112
112
  return yargs
113
113
  },
114
114
  (argv) => {
115
- if (argv.verbose) console.info('Tsconfig Clean')
115
+ if (argv.verbose) console.log('Tsconfig Clean')
116
116
  process.exitCode = tsconfigGenClean()
117
117
  },
118
118
  )
@@ -123,7 +123,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
123
123
  return yargs
124
124
  },
125
125
  (argv) => {
126
- if (argv.verbose) console.info('UpPlug')
126
+ if (argv.verbose) console.log('UpPlug')
127
127
  process.exitCode = updateYarnPlugins()
128
128
  },
129
129
  )
@@ -134,7 +134,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
134
134
  return yargs
135
135
  },
136
136
  (argv) => {
137
- if (argv.verbose) console.info('UpYarn')
137
+ if (argv.verbose) console.log('UpYarn')
138
138
  process.exitCode = updateYarnVersion()
139
139
  },
140
140
  )
@@ -145,7 +145,7 @@ export const xyCommonCommands = (args: yargs.Argv) => {
145
145
  return yargs
146
146
  },
147
147
  (argv) => {
148
- if (argv.verbose) console.info('Yarn 3 Check')
148
+ if (argv.verbose) console.log('Yarn 3 Check')
149
149
  process.exitCode = yarn3Only()
150
150
  },
151
151
  )
@@ -11,7 +11,7 @@ export const xyDeployCommands = (args: yargs.Argv) => {
11
11
  return yargs
12
12
  },
13
13
  (argv) => {
14
- if (argv.verbose) console.info('Deploy patch')
14
+ if (argv.verbose) console.log('Deploy patch')
15
15
  process.exitCode = deploy()
16
16
  },
17
17
  )
@@ -22,7 +22,7 @@ export const xyDeployCommands = (args: yargs.Argv) => {
22
22
  return yargs
23
23
  },
24
24
  (argv) => {
25
- if (argv.verbose) console.info('Deploy minor')
25
+ if (argv.verbose) console.log('Deploy minor')
26
26
  process.exitCode = deployMinor()
27
27
  },
28
28
  )
@@ -33,7 +33,7 @@ export const xyDeployCommands = (args: yargs.Argv) => {
33
33
  return yargs
34
34
  },
35
35
  (argv) => {
36
- if (argv.verbose) console.info('Deploy major')
36
+ if (argv.verbose) console.log('Deploy major')
37
37
  process.exitCode = deployMajor()
38
38
  },
39
39
  )
@@ -44,7 +44,7 @@ export const xyDeployCommands = (args: yargs.Argv) => {
44
44
  return yargs
45
45
  },
46
46
  (argv) => {
47
- if (argv.verbose) console.info('Deploy next')
47
+ if (argv.verbose) console.log('Deploy next')
48
48
  process.exitCode = deployNext()
49
49
  },
50
50
  )
@@ -13,7 +13,7 @@ export const xyInstallCommands = (args: yargs.Argv) => {
13
13
  })
14
14
  },
15
15
  (argv) => {
16
- if (argv.verbose) console.info(`Cleaning: ${argv.package ?? 'all'}`)
16
+ if (argv.verbose) console.log(`Cleaning: ${argv.package ?? 'all'}`)
17
17
  process.exitCode = clean()
18
18
  },
19
19
  )
@@ -24,7 +24,7 @@ export const xyInstallCommands = (args: yargs.Argv) => {
24
24
  return yargs
25
25
  },
26
26
  (argv) => {
27
- if (argv.verbose) console.info('Reinstalling')
27
+ if (argv.verbose) console.log('Reinstalling')
28
28
  process.exitCode = reinstall()
29
29
  },
30
30
  )
@@ -35,7 +35,7 @@ export const xyInstallCommands = (args: yargs.Argv) => {
35
35
  return yargs
36
36
  },
37
37
  (argv) => {
38
- if (argv.verbose) console.info('Up')
38
+ if (argv.verbose) console.log('Up')
39
39
  process.exitCode = up()
40
40
  },
41
41
  )
@@ -46,7 +46,7 @@ export const xyInstallCommands = (args: yargs.Argv) => {
46
46
  return yargs
47
47
  },
48
48
  (argv) => {
49
- if (argv.verbose) console.info('Updo')
49
+ if (argv.verbose) console.log('Updo')
50
50
  process.exitCode = updo()
51
51
  },
52
52
  )
@@ -13,7 +13,7 @@ export const xyLintCommands = (args: yargs.Argv) => {
13
13
  })
14
14
  },
15
15
  (argv) => {
16
- if (argv.verbose) console.info('Cycle')
16
+ if (argv.verbose) console.log('Cycle')
17
17
  process.exitCode = cycle()
18
18
  },
19
19
  )
@@ -26,7 +26,7 @@ export const xyLintCommands = (args: yargs.Argv) => {
26
26
  })
27
27
  },
28
28
  (argv) => {
29
- if (argv.verbose) console.info('Lint')
29
+ if (argv.verbose) console.log('Lint')
30
30
  process.exitCode = argv.fix ? fix() : argv.profile ? lintProfile() : lint()
31
31
  },
32
32
  )
@@ -39,7 +39,7 @@ export const xyLintCommands = (args: yargs.Argv) => {
39
39
  })
40
40
  },
41
41
  (argv) => {
42
- if (argv.verbose) console.info('Fix')
42
+ if (argv.verbose) console.log('Fix')
43
43
  process.exitCode = fix()
44
44
  },
45
45
  )
@@ -52,7 +52,7 @@ export const xyLintCommands = (args: yargs.Argv) => {
52
52
  })
53
53
  },
54
54
  (argv) => {
55
- if (argv.verbose) console.info('Relinting')
55
+ if (argv.verbose) console.log('Relinting')
56
56
  process.exitCode = relint()
57
57
  },
58
58
  )
@@ -63,7 +63,7 @@ export const xyLintCommands = (args: yargs.Argv) => {
63
63
  return yargs
64
64
  },
65
65
  (argv) => {
66
- if (argv.verbose) console.info('Sonar Check')
66
+ if (argv.verbose) console.log('Sonar Check')
67
67
  process.exitCode = sonar()
68
68
  },
69
69
  )