@khanacademy/wonder-blocks-testing 16.0.0 → 16.0.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.
- package/CHANGELOG.md +21 -0
- package/package.json +16 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-testing
|
|
2
2
|
|
|
3
|
+
## 16.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6d5c485: Include provenance information when publishing to npmjs
|
|
8
|
+
- Updated dependencies [6d5c485]
|
|
9
|
+
- @khanacademy/wonder-blocks-core@12.4.1
|
|
10
|
+
- @khanacademy/wonder-blocks-data@14.1.7
|
|
11
|
+
- @khanacademy/wonder-blocks-testing-core@4.0.2
|
|
12
|
+
|
|
13
|
+
## 16.0.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 4c03506: Upgrade wonder-blocks infrastructure to use Storybook v9
|
|
18
|
+
- 4c03506: Remove storybook dependency - no longer used.
|
|
19
|
+
- Updated dependencies [4c03506]
|
|
20
|
+
- @khanacademy/wonder-blocks-testing-core@4.0.1
|
|
21
|
+
- @khanacademy/wonder-blocks-core@12.4.0
|
|
22
|
+
- @khanacademy/wonder-blocks-data@14.1.6
|
|
23
|
+
|
|
3
24
|
## 16.0.0
|
|
4
25
|
|
|
5
26
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,18 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-testing",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"description": "",
|
|
4
|
+
"author": "Khan Academy",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"version": "16.0.2",
|
|
5
7
|
"publishConfig": {
|
|
6
8
|
"access": "public"
|
|
7
9
|
},
|
|
8
|
-
"
|
|
10
|
+
"design": "v1",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/Khan/wonder-blocks.git",
|
|
14
|
+
"directory": "packages/wonder-blocks-testing"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/Khan/wonder-blocks/issues"
|
|
18
|
+
},
|
|
9
19
|
"main": "dist/index.js",
|
|
10
20
|
"module": "dist/es/index.js",
|
|
11
21
|
"types": "dist/index.d.ts",
|
|
12
22
|
"dependencies": {
|
|
13
|
-
"@khanacademy/wonder-blocks-core": "12.4.
|
|
14
|
-
"@khanacademy/wonder-blocks-data": "14.1.
|
|
15
|
-
"@khanacademy/wonder-blocks-testing-core": "4.0.
|
|
23
|
+
"@khanacademy/wonder-blocks-core": "12.4.1",
|
|
24
|
+
"@khanacademy/wonder-blocks-data": "14.1.7",
|
|
25
|
+
"@khanacademy/wonder-blocks-testing-core": "4.0.2"
|
|
16
26
|
},
|
|
17
27
|
"peerDependencies": {
|
|
18
28
|
"@khanacademy/wonder-stuff-core": "^1.5.4",
|
|
@@ -27,8 +37,6 @@
|
|
|
27
37
|
"@khanacademy/wonder-stuff-testing": "^3.0.5",
|
|
28
38
|
"@khanacademy/wb-dev-build-settings": "3.2.0"
|
|
29
39
|
},
|
|
30
|
-
"author": "",
|
|
31
|
-
"license": "MIT",
|
|
32
40
|
"scripts": {
|
|
33
41
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
34
42
|
}
|