@lightspeed/design-system-css 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# @lightspeed/design-system-css
|
2
2
|
|
3
|
+
## 1.0.2
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [[`13743872b`](https://github.com/vend/monocle/commit/13743872b0eb04bae4143efd20e24d11ba5cd925)]:
|
8
|
+
- @lightspeed/design-system-tokens@1.0.0
|
9
|
+
|
3
10
|
## 1.0.1
|
4
11
|
|
5
12
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lightspeed/design-system-css",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.2",
|
4
4
|
"description": "Lightspeed's Design System in CSS",
|
5
5
|
"author": "Lightspeed Commerce Inc.",
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
@@ -17,12 +17,12 @@
|
|
17
17
|
"build": "yarn lint && yarn build:css && yarn build:retrocompatibility",
|
18
18
|
"build:css": "sass --load-path=../../node_modules -q src/index.scss:dist/index.css",
|
19
19
|
"build:retrocompatibility": "cp dist/index.css dist/vend-styles.css",
|
20
|
-
"build
|
20
|
+
"build:watch": "yarn lint && yarn build:css --watch",
|
21
21
|
"test": "true",
|
22
22
|
"lint": "yarn stylelint './src/**/*.scss' --config ./stylelint.config.json"
|
23
23
|
},
|
24
24
|
"dependencies": {
|
25
|
-
"@lightspeed/design-system-tokens": "
|
25
|
+
"@lightspeed/design-system-tokens": "1.0.0"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
28
|
"@types/node": "^16.11.2",
|
@@ -6,7 +6,7 @@
|
|
6
6
|
.vd-flex--row { flex-direction: row; }
|
7
7
|
.vd-flex--column { flex-direction: column; }
|
8
8
|
|
9
|
-
.vd-flex--no-shrink { flex-shrink: 0 }
|
9
|
+
.vd-flex--no-shrink { flex-shrink: 0; }
|
10
10
|
|
11
11
|
.vd-flex--justify-start { justify-content: flex-start; }
|
12
12
|
.vd-flex--justify-end { justify-content: flex-end; }
|