@dockstat/docker 0.1.2 → 0.1.3
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/types.d.ts +1857 -2441
- package/package.json +2 -2
- package/tsconfig.json +2 -6
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"docker",
|
|
18
18
|
"bun"
|
|
19
19
|
],
|
|
20
|
-
"version": "0.1.
|
|
20
|
+
"version": "0.1.3",
|
|
21
21
|
"license": "MPL-2.0",
|
|
22
22
|
"repository": {
|
|
23
23
|
"directory": "packages/bun-docker",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "bun build --target=bun --production --outdir=dist src/index.ts",
|
|
43
|
-
"typegen": "bunx
|
|
43
|
+
"typegen": "bunx dts-bundle-generator --sort --export-referenced-types false -o dist/types.d.ts src/index.ts",
|
|
44
44
|
"publish": "bun run build && bun run typegen && bun pm pack --destination ./dist && npm publish --access public ./dist/*.tgz ; rm -r ./dist"
|
|
45
45
|
}
|
|
46
46
|
}
|
package/tsconfig.json
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"jsx": "react-jsx",
|
|
9
9
|
"allowJs": true,
|
|
10
10
|
|
|
11
|
-
// Bundler mode
|
|
12
11
|
"moduleResolution": "bundler",
|
|
13
12
|
"allowImportingTsExtensions": true,
|
|
14
13
|
"verbatimModuleSyntax": true,
|
|
14
|
+
|
|
15
15
|
"noEmit": true,
|
|
16
16
|
|
|
17
17
|
// Best practices
|
|
@@ -21,11 +21,7 @@
|
|
|
21
21
|
"noUncheckedIndexedAccess": true,
|
|
22
22
|
"noImplicitOverride": true,
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
"outDir": "dist",
|
|
26
|
-
"declaration": true,
|
|
27
|
-
|
|
28
|
-
// Some stricter flags (disabled by default)
|
|
24
|
+
// Some stricter flags
|
|
29
25
|
"noUnusedLocals": true,
|
|
30
26
|
"noUnusedParameters": true,
|
|
31
27
|
"noPropertyAccessFromIndexSignature": true,
|