@atlaskit/reduced-ui-pack 13.1.0 → 15.0.0
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 +25 -0
- package/package.json +13 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @atlaskit/reduced-ui-pack
|
|
2
2
|
|
|
3
|
+
## 15.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 14.0.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 14.0.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
21
|
+
## 13.1.1
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [`01d837cb7f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01d837cb7f5) - Local build tooling has been improved.
|
|
26
|
+
- [`d98f1bb1169`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d98f1bb1169) - Local build tooling improvements.
|
|
27
|
+
|
|
3
28
|
## 13.1.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/reduced-ui-pack",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"description": "CSS classes which provide styling for a reduced number of Atlaskit components.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -24,31 +24,34 @@
|
|
|
24
24
|
"ak-postbuild": "mkdir -p dist && cp src/bundle.css dist/bundle.css && cp src/icons-sprite.svg dist/icons-sprite.svg",
|
|
25
25
|
"update": "yarn build-css && yarn run sprite",
|
|
26
26
|
"sprite": "node ./bin/buildSprite.js",
|
|
27
|
-
"build-css": "
|
|
27
|
+
"build-css": "ts-node --transpile-only --project ./tsconfig.build.json build/js-to-css.js"
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"dist/bundle.css",
|
|
31
31
|
"dist/icons-sprite.svg"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/theme": "^
|
|
34
|
+
"@atlaskit/theme": "^12.0.0",
|
|
35
35
|
"fbjs": "^3.0.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@atlaskit/css-reset": "^6.0
|
|
38
|
+
"@atlaskit/css-reset": "^6.2.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@atlaskit/docs": "*",
|
|
42
|
-
"@atlaskit/icon": "^21.
|
|
43
|
-
"@atlaskit/section-message": "^
|
|
44
|
-
"@
|
|
45
|
-
"
|
|
42
|
+
"@atlaskit/icon": "^21.9.0",
|
|
43
|
+
"@atlaskit/section-message": "^6.0.0",
|
|
44
|
+
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
45
|
+
"bolt": "^0.24.10",
|
|
46
46
|
"glob": "^7.1.2",
|
|
47
|
+
"jsdom": "^16.2.2",
|
|
47
48
|
"mkdirp": "^0.5.1",
|
|
48
49
|
"react": "^16.8.0",
|
|
49
|
-
"svg-sprite": "^1.4.0"
|
|
50
|
+
"svg-sprite": "^1.4.0",
|
|
51
|
+
"ts-node": "^10.0.0"
|
|
50
52
|
},
|
|
51
53
|
"af:exports": {
|
|
52
54
|
".": "./src/bundle.css"
|
|
53
|
-
}
|
|
55
|
+
},
|
|
56
|
+
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
|
|
54
57
|
}
|