storybooker 0.0.1 → 0.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # storybooker
2
2
 
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 14a26f6: Include CHANGELOG.md in published packages
8
+
9
+ ## 0.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 1f80c2f: Updating workspace deps
14
+
3
15
  ## 0.0.1
4
16
 
5
17
  ### Patch Changes
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ import { tmpdir } from "node:os";
14
14
 
15
15
  //#region package.json
16
16
  var name = "storybooker";
17
- var version = "0.0.0";
17
+ var version = "0.0.2";
18
18
 
19
19
  //#endregion
20
20
  //#region src/utils/auth-utils.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storybooker",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "bin": "./dist/index.js",
6
6
  "description": "Storybooker CLI for uploading builds and files.",
@@ -8,6 +8,11 @@
8
8
  "name": "Siddhant Gupta",
9
9
  "url": "https://guptasiddhant.com"
10
10
  },
11
+ "files": [
12
+ "src",
13
+ "dist",
14
+ "CHANGELOG.md"
15
+ ],
11
16
  "repository": {
12
17
  "type": "git",
13
18
  "url": "https://github.com/guptasiddhant/storybooker",
@@ -42,4 +47,4 @@
42
47
  "tsdown": "^0.14.1",
43
48
  "typescript": "^5.9.2"
44
49
  }
45
- }
50
+ }
package/.oxlintrc.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "extends": ["../../.oxlintrc.json"],
3
- "env": {
4
- "builtin": true,
5
- "node": true
6
- },
7
- "rules": {
8
- "no-console": "allow",
9
- "no-process-exit": "allow",
10
- "no-unsafe-call": "allow",
11
- "sort-keys": "allow"
12
- },
13
- "ignorePatterns": [],
14
- "overrides": [
15
- {
16
- "files": ["*.d.ts"],
17
- "rules": {
18
- "max-lines": "allow",
19
- "consistent-indexed-object-style": "allow",
20
- "no-redundant-type-constituents": "allow"
21
- }
22
- }
23
- ]
24
- }
@@ -1,11 +0,0 @@
1
-
2
- ℹ tsdown v0.14.2 powered by rolldown v1.0.0-beta.36
3
- ℹ Using tsdown config: /Users/siddhant.c.gupta/Projects/GS/storybooker/packages/cli/tsdown.config.ts
4
- ℹ entry: src/index.ts
5
- ℹ tsconfig: tsconfig.json
6
- ℹ Build start
7
- ℹ Cleaning 1 files
8
- ℹ Granting execute permission to dist/index.js
9
- ℹ dist/index.js 18.25 kB │ gzip: 5.14 kB
10
- ℹ 1 files, total: 18.25 kB
11
- ✔ Build complete in 53ms
@@ -1,2 +0,0 @@
1
-
2
- 
@@ -1,3 +0,0 @@
1
-
2
- Found 0 warnings and 0 errors.
3
- Finished in 785ms on 13 files using 10 threads.
package/tsconfig.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "include": ["src"],
4
- "exclude": ["node_modules", "dist"],
5
- "compilerOptions": {
6
- "outDir": "dist",
7
- "rootDir": "src",
8
- "skipLibCheck": true
9
- }
10
- }
package/tsdown.config.ts DELETED
@@ -1,9 +0,0 @@
1
- import { defineConfig } from "tsdown";
2
-
3
- export default defineConfig({
4
- banner: { js: "#!/usr/bin/env node" },
5
- dts: false,
6
- entry: ["./src/index.ts"],
7
- platform: "node",
8
- treeshake: true,
9
- });