storybooker 0.0.2 → 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,11 @@
1
1
  # storybooker
2
2
 
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 14a26f6: Include CHANGELOG.md in published packages
8
+
3
9
  ## 0.0.2
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storybooker",
3
- "version": "0.0.2",
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",
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 28ms
@@ -1,2 +0,0 @@
1
-
2
- 
@@ -1,3 +0,0 @@
1
-
2
- Found 0 warnings and 0 errors.
3
- Finished in 894ms 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
- });