@khanacademy/wonder-blocks-cell 6.1.0 → 6.1.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/.turbo/turbo-build$colon$css.log +1 -1
- package/CHANGELOG.md +22 -0
- package/package.json +18 -10
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @khanacademy/wonder-blocks-cell@6.1.
|
|
2
|
+
> @khanacademy/wonder-blocks-cell@6.1.2 build:css /home/runner/work/wonder-blocks/wonder-blocks/packages/wonder-blocks-cell
|
|
3
3
|
> pnpm exec wonder-blocks-tokens .
|
|
4
4
|
|
|
5
5
|
CSS variables generated successfully in: /home/runner/work/wonder-blocks/wonder-blocks/packages/wonder-blocks-cell/dist/css
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-cell
|
|
2
2
|
|
|
3
|
+
## 6.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [272bf31]
|
|
8
|
+
- @khanacademy/wonder-blocks-tokens@14.1.0
|
|
9
|
+
- @khanacademy/wonder-blocks-clickable@8.0.2
|
|
10
|
+
- @khanacademy/wonder-blocks-styles@0.2.34
|
|
11
|
+
- @khanacademy/wonder-blocks-typography@4.2.24
|
|
12
|
+
|
|
13
|
+
## 6.1.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 6d5c485: Include provenance information when publishing to npmjs
|
|
18
|
+
- Updated dependencies [6d5c485]
|
|
19
|
+
- @khanacademy/wonder-blocks-clickable@8.0.1
|
|
20
|
+
- @khanacademy/wonder-blocks-core@12.4.1
|
|
21
|
+
- @khanacademy/wonder-blocks-styles@0.2.33
|
|
22
|
+
- @khanacademy/wonder-blocks-tokens@14.0.1
|
|
23
|
+
- @khanacademy/wonder-blocks-typography@4.2.23
|
|
24
|
+
|
|
3
25
|
## 6.1.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-cell",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"description": "",
|
|
4
|
+
"author": "Khan Academy",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"version": "6.1.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-cell"
|
|
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",
|
|
@@ -18,11 +28,11 @@
|
|
|
18
28
|
"./styles.css": "./dist/css/vars.css"
|
|
19
29
|
},
|
|
20
30
|
"dependencies": {
|
|
21
|
-
"@khanacademy/wonder-blocks-
|
|
22
|
-
"@khanacademy/wonder-blocks-
|
|
23
|
-
"@khanacademy/wonder-blocks-styles": "0.2.
|
|
24
|
-
"@khanacademy/wonder-blocks-tokens": "14.
|
|
25
|
-
"@khanacademy/wonder-blocks-typography": "4.2.
|
|
31
|
+
"@khanacademy/wonder-blocks-clickable": "8.0.2",
|
|
32
|
+
"@khanacademy/wonder-blocks-core": "12.4.1",
|
|
33
|
+
"@khanacademy/wonder-blocks-styles": "0.2.34",
|
|
34
|
+
"@khanacademy/wonder-blocks-tokens": "14.1.0",
|
|
35
|
+
"@khanacademy/wonder-blocks-typography": "4.2.24"
|
|
26
36
|
},
|
|
27
37
|
"peerDependencies": {
|
|
28
38
|
"aphrodite": "^1.2.5",
|
|
@@ -31,8 +41,6 @@
|
|
|
31
41
|
"devDependencies": {
|
|
32
42
|
"@khanacademy/wb-dev-build-settings": "3.2.0"
|
|
33
43
|
},
|
|
34
|
-
"author": "",
|
|
35
|
-
"license": "MIT",
|
|
36
44
|
"scripts": {
|
|
37
45
|
"build:css": "pnpm exec wonder-blocks-tokens .",
|
|
38
46
|
"test": "echo \"Error: no test specified\" && exit 1"
|