@justeattakeaway/stylelint-config-pie 0.9.2 → 1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +8 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [Fixed] - add tokens packages as peerDependencies ([#2732](https://github.com/justeattakeaway/pie/pull/2732)) by [@raoufswe](https://github.com/raoufswe)
8
+
9
+ - Updated dependencies [[`76e0750`](https://github.com/justeattakeaway/pie/commit/76e0750169bb9894b95548e9acee09a8ab339f5c)]:
10
+ - @justeattakeaway/pie-css@0.32.0
11
+
3
12
  ## 0.9.2
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justeattakeaway/stylelint-config-pie",
3
- "version": "0.9.2",
3
+ "version": "1.0.0",
4
4
  "description": "Shareable Stylelint config for use with any front-end web projects across JET.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -23,10 +23,17 @@
23
23
  "./ordering": "./rules/ordering.js"
24
24
  },
25
25
  "peerDependencies": {
26
+ "@justeat/pie-design-tokens": "*",
27
+ "@justeattakeaway/pie-css": "*",
26
28
  "stylelint": "16.x",
27
29
  "stylelint-config-standard-scss": "13.x",
28
30
  "stylelint-order": "6.x"
29
31
  },
32
+ "peerDependenciesMeta": {
33
+ "@justeattakeaway/pie-css": {
34
+ "optional": true
35
+ }
36
+ },
30
37
  "dependencies": {
31
38
  "@justeattakeaway/stylelint-no-logical-props-shorthands": "0.3.0"
32
39
  },