@systemfsoftware/arethetypeswrong-cli 3.0.0 → 3.0.1
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @systemfsoftware/arethetypeswrong-cli
|
|
2
2
|
|
|
3
|
+
## 3.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies:
|
|
12
|
+
- @systemfsoftware/arethetypeswrong-core@4.0.0
|
|
13
|
+
|
|
3
14
|
## 3.0.0
|
|
4
15
|
|
|
5
16
|
### Major Changes
|
|
@@ -580,15 +580,15 @@ const registryOptions = () => Flag.string("registry").pipe(Flag.withDescription(
|
|
|
580
580
|
const unwrap = (opt) => Option.isSome(opt) ? opt.value : void 0;
|
|
581
581
|
const attwCommand = Command.make("attw", {
|
|
582
582
|
fileOrDirectory: Argument.optional(Argument.string("file-directory-or-package-spec")),
|
|
583
|
-
pack: Flag.boolean("pack").pipe(Flag.withAlias("P"), Flag.withDescription("Run `npm pack` in the specified directory and delete the resulting .tgz file afterwards")),
|
|
584
|
-
fromNpm: Flag.boolean("from-npm").pipe(Flag.withAlias("p"), Flag.withDescription("Read from the npm registry instead of a local file")),
|
|
583
|
+
pack: Flag.boolean("pack").pipe(Flag.withAlias("P"), Flag.withDefault(false), Flag.withDescription("Run `npm pack` in the specified directory and delete the resulting .tgz file afterwards")),
|
|
584
|
+
fromNpm: Flag.boolean("from-npm").pipe(Flag.withAlias("p"), Flag.withDefault(false), Flag.withDescription("Read from the npm registry instead of a local file")),
|
|
585
585
|
definitelyTyped: definitelyTypedOptions(),
|
|
586
586
|
format: formatOptions(),
|
|
587
|
-
quiet: Flag.boolean("quiet").pipe(Flag.withAlias("q"), Flag.withDescription("Don't print anything to STDOUT (overrides all other options)")),
|
|
587
|
+
quiet: Flag.boolean("quiet").pipe(Flag.withAlias("q"), Flag.withDefault(false), Flag.withDescription("Don't print anything to STDOUT (overrides all other options)")),
|
|
588
588
|
entrypoints: Flag.optional(Flag.atLeast(1)(Flag.string("entrypoints"))),
|
|
589
589
|
includeEntrypoints: Flag.optional(Flag.atLeast(1)(Flag.string("include-entrypoints"))),
|
|
590
590
|
excludeEntrypoints: Flag.optional(Flag.atLeast(1)(Flag.string("exclude-entrypoints"))),
|
|
591
|
-
entrypointsLegacy: Flag.boolean("entrypoints-legacy"),
|
|
591
|
+
entrypointsLegacy: Flag.boolean("entrypoints-legacy").pipe(Flag.withDefault(false)),
|
|
592
592
|
ignoreRules: ignoreRulesOptions(),
|
|
593
593
|
profile: profileOptions(),
|
|
594
594
|
summary: Flag.boolean("summary").pipe(Flag.withDefault(true)),
|
package/dist/AttwHandler.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as attwCommand } from "./AttwHandler-
|
|
1
|
+
import { t as attwCommand } from "./AttwHandler-GdVcA4q8.mjs";
|
|
2
2
|
export { attwCommand };
|
package/dist/main.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as FilesystemLive, i as PackRunnerLive, n as TerminalLive, r as StdinLive, t as attwCommand } from "./AttwHandler-
|
|
2
|
+
import { a as FilesystemLive, i as PackRunnerLive, n as TerminalLive, r as StdinLive, t as attwCommand } from "./AttwHandler-GdVcA4q8.mjs";
|
|
3
3
|
import { layer } from "@effect/platform-node-shared/NodeChildProcessSpawner";
|
|
4
4
|
import { layer as layer$1 } from "@effect/platform-node-shared/NodeFileSystem";
|
|
5
5
|
import { layer as layer$2 } from "@effect/platform-node-shared/NodePath";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/arethetypeswrong-cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "A CLI tool for arethetypeswrong.github.io — owned and maintained by systemfsoftware",
|
|
5
5
|
"author": "Ryan Lee <drdgvhbh@gmail.com>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@effect/platform-node": "^4.0.0-rc.
|
|
26
|
-
"@effect/platform-node-shared": "^4.0.0-rc.
|
|
27
|
-
"effect": "4.0.0-rc.
|
|
28
|
-
"@systemfsoftware/arethetypeswrong-core": "
|
|
25
|
+
"@effect/platform-node": "^4.0.0-rc.111",
|
|
26
|
+
"@effect/platform-node-shared": "^4.0.0-rc.111",
|
|
27
|
+
"effect": "4.0.0-rc.111",
|
|
28
|
+
"@systemfsoftware/arethetypeswrong-core": "4.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@effect/vitest": "4.0.0-rc.
|
|
31
|
+
"@effect/vitest": "4.0.0-rc.111",
|
|
32
32
|
"@types/node": "^24",
|
|
33
33
|
"fast-check": "^4",
|
|
34
34
|
"oxlint": "^1.77.0",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"tsdown": "^0.22.14",
|
|
38
38
|
"vite-tsconfig-paths": "^6.1.1",
|
|
39
39
|
"vitest": "^4.1.10",
|
|
40
|
-
"@systemfsoftware/effect-gherkin-spec": "^2.0.
|
|
41
|
-
"@systemfsoftware/effect-schema-law": "^0.
|
|
42
|
-
"@systemfsoftware/
|
|
43
|
-
"@systemfsoftware/effect-schema-vite": "^1.5.3",
|
|
44
|
-
"@systemfsoftware/vitest-config": "^0.1.0",
|
|
40
|
+
"@systemfsoftware/effect-gherkin-spec": "^2.0.1",
|
|
41
|
+
"@systemfsoftware/effect-schema-law": "^0.9.0",
|
|
42
|
+
"@systemfsoftware/effect-schema-vite": "^1.5.4",
|
|
45
43
|
"@systemfsoftware/oxlint-config": "^0.1.0",
|
|
46
|
-
"@systemfsoftware/
|
|
44
|
+
"@systemfsoftware/vitest-config": "^0.1.0",
|
|
45
|
+
"@systemfsoftware/tsconfig": "^1.3.3",
|
|
46
|
+
"@systemfsoftware/oxlint-plugin-effect-dmmf": "^4.0.0"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": ">=24"
|