@anansi/storybook 0.3.0 → 0.3.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +19 -12
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [0.3.2](https://github.com/ntucker/anansi/compare/@anansi/storybook@0.3.1...@anansi/storybook@0.3.2) (2023-03-27)
7
+
8
+ **Note:** Version bump only for package @anansi/storybook
9
+
10
+ ### [0.3.1](https://github.com/ntucker/anansi/compare/@anansi/storybook@0.3.0...@anansi/storybook@0.3.1) (2023-03-26)
11
+
12
+ ### 📦 Package
13
+
14
+ * Add missing packages ([1193aa4](https://github.com/ntucker/anansi/commit/1193aa4a64da33b9588606f194eb729b60d84747))
15
+ * Remove prerelease ranges ([1699480](https://github.com/ntucker/anansi/commit/169948070ab28c4a1038398459cc7f61d6b28800))
16
+ * Update all non-major dependencies ([#1919](https://github.com/ntucker/anansi/issues/1919)) ([229fc87](https://github.com/ntucker/anansi/commit/229fc87a11f2e6ddc83aab052636eb46bb6327c3))
17
+ * Update storybook monorepo to v7.0.0-rc.8 ([#1916](https://github.com/ntucker/anansi/issues/1916)) ([bb5fc2c](https://github.com/ntucker/anansi/commit/bb5fc2cf226d02a477aad98263d6eb2b89d1d92b))
18
+
6
19
  ## [0.3.0](https://github.com/ntucker/anansi/compare/@anansi/storybook@0.2.3...@anansi/storybook@0.3.0) (2023-03-24)
7
20
 
8
21
  ### 🚀 Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anansi/storybook",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Storybook framework for anansi",
5
5
  "homepage": "https://github.com/ntucker/anansi/tree/master/packages/storybook#readme",
6
6
  "repository": {
@@ -36,25 +36,31 @@
36
36
  "react"
37
37
  ],
38
38
  "devDependencies": {
39
- "@anansi/babel-preset": "4.1.2",
40
- "@anansi/browserslist-config": "1.4.1",
39
+ "@anansi/babel-preset": "4.2.0",
40
+ "@anansi/browserslist-config": "1.4.2",
41
+ "@anansi/webpack-config": "15.0.2",
41
42
  "@babel/cli": "7.21.0",
42
43
  "@babel/core": "7.21.3",
44
+ "@rest-hooks/react": "^7.2.9",
45
+ "@types/react": "^18.0.29",
43
46
  "jest": "29.5.0",
47
+ "react": "^18.2.0",
44
48
  "rimraf": "4.4.1"
45
49
  },
46
50
  "dependencies": {
47
51
  "@babel/runtime": "^7.17.0",
48
- "@storybook/builder-webpack5": "7.0.0-rc.7",
49
- "@storybook/preset-react-webpack": "^7.0.0-rc.7",
50
- "@storybook/react": "7.0.0-rc.7",
51
- "@types/node": "^16.18.19"
52
+ "@storybook/builder-webpack5": "^7.0.0-rc.8",
53
+ "@storybook/preset-react-webpack": "^7.0.0-rc.8",
54
+ "@storybook/react": "^7.0.0-rc.8",
55
+ "@storybook/types": "^7.0.0-rc.8",
56
+ "@types/node": "^16.18.21"
52
57
  },
53
58
  "peerDependencies": {
54
59
  "@anansi/babel-preset": "^3.0.0 || ^4.0.0",
55
60
  "@anansi/webpack-config": "^13.0.0 || ^14.0.0 || ^15.0.0",
56
- "@types/react": "^17.0.40 || ^18.0.0-0",
57
- "react": "^18.0.0-0"
61
+ "@rest-hooks/react": "^6.0.0 || ^7.0.0",
62
+ "@types/react": "^17.0.40 || ^18.0.0",
63
+ "react": "^18.0.0"
58
64
  },
59
65
  "peerDependenciesMeta": {
60
66
  "@types/react": {
@@ -67,12 +73,13 @@
67
73
  "scripts": {
68
74
  "pretest": "eslint --ext .ts,.tsx .",
69
75
  "test": "jest",
76
+ "test:ci": "jest",
70
77
  "test:type": "tsc",
71
- "dev": "yarn run build:lib -w",
72
- "build": "yarn run build:lib",
78
+ "dev": "run build:lib -w",
79
+ "build": "run build:lib",
73
80
  "build:lib": "NODE_ENV=production BROWSERSLIST_ENV=node16 babel --root-mode upward src --out-dir dist --source-maps inline --extensions '.ts,.tsx,.js' --ignore '**/__tests__/**' --ignore '**/*.d.ts'",
74
81
  "build:clean": "rimraf lib dist ts3.4 legacy dist *.tsbuildinfo",
75
- "prepack": "yarn build"
82
+ "prepack": "run build"
76
83
  },
77
84
  "module": "dist/index.js"
78
85
  }