@prover-coder-ai/docker-git 1.0.7 → 1.0.8

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prover-coder-ai/docker-git",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Minimal Vite-powered TypeScript console starter using Effect",
5
5
  "main": "dist/src/docker-git/main.js",
6
6
  "bin": {
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @prover-coder-ai/docker-git
2
2
 
3
+ ## 1.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: automated version bump
8
+
3
9
  ## 1.0.7
4
10
 
5
11
  ### Patch Changes
@@ -136,7 +136,7 @@ const restrictedSyntaxBaseNoServiceFactory = [
136
136
  export default tseslint.config(
137
137
  {
138
138
  name: "effect-ts-compliance-check",
139
- files: ["src/**/*.ts", "scripts/**/*.ts"],
139
+ files: ["src/**/*.ts", "scripts/**/*.ts", "tests/**/*.ts"],
140
140
  languageOptions: {
141
141
  parser: tseslint.parser,
142
142
  globals: { ...globals.node }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prover-coder-ai/docker-git",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Minimal Vite-powered TypeScript console starter using Effect",
5
5
  "main": "dist/src/docker-git/main.js",
6
6
  "bin": {
@@ -26,15 +26,20 @@ const withArgv = (nextArgv: ReadonlyArray<string>) =>
26
26
  })
27
27
  )
28
28
 
29
- const usageCases = [
30
- { argv: ["node", "main"], needle: "pnpm docker-git" as const },
31
- { argv: ["node", "main", "Alice"], needle: "Usage:" as const }
32
- ] as const
29
+ type UsageCase = {
30
+ readonly argv: ReadonlyArray<string>
31
+ readonly needle: string
32
+ }
33
+
34
+ const usageCases: ReadonlyArray<UsageCase> = [
35
+ { argv: ["node", "main"], needle: "pnpm docker-git" },
36
+ { argv: ["node", "main", "Alice"], needle: "Usage:" }
37
+ ]
33
38
 
34
39
  const runUsageCase = ({
35
40
  argv,
36
41
  needle
37
- }: (typeof usageCases)[number]) =>
42
+ }: UsageCase) =>
38
43
  Effect.scoped(
39
44
  Effect.gen(function*(_) {
40
45
  const logSpy = yield* _(withLogSpy)