@trpc/upgrade 0.0.0-alpha.14 → 0.0.0-alpha.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.
package/dist/cli.cjs CHANGED
@@ -23,6 +23,7 @@ const uninstallPackage = (packageName)=>{
23
23
  };
24
24
  const filterIgnored = (files)=>effect.Effect.gen(function*() {
25
25
  const ignores = yield* platform.Command.string(MakeCommand('git', 'check-ignore', '**/*').pipe(platform.Command.runInShell(true))).pipe(effect.Effect.tap((_)=>effect.Effect.logDebug('Ignored files output:', _)), effect.Effect.map((_)=>_.split('\n')));
26
+ yield* effect.Effect.logDebug('cwd:', process.cwd());
26
27
  yield* effect.Effect.logDebug('All files in program:', files.map((_)=>_.fileName));
27
28
  yield* effect.Effect.logDebug('Ignored files:', ignores);
28
29
  // Ignore "common files"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trpc/upgrade",
3
- "version": "0.0.0-alpha.14",
3
+ "version": "0.0.0-alpha.15",
4
4
  "description": "Upgrade scripts for tRPC",
5
5
  "author": "juliusmarminge",
6
6
  "license": "MIT",
package/src/bin/cli.ts CHANGED
@@ -74,6 +74,8 @@ const filterIgnored = (files: readonly SourceFile[]) =>
74
74
  Effect.map((_) => _.split('\n')),
75
75
  );
76
76
 
77
+ yield* Effect.logDebug('cwd:', process.cwd());
78
+
77
79
  yield* Effect.logDebug(
78
80
  'All files in program:',
79
81
  files.map((_) => _.fileName),