@eik/postcss-plugin 3.0.0-next.2 → 3.0.3

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 +43 -0
  2. package/package.json +13 -12
package/CHANGELOG.md CHANGED
@@ -1,3 +1,46 @@
1
+ ## [3.0.3](https://github.com/eik-lib/postcss-import-map/compare/v3.0.2...v3.0.3) (2021-09-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency node-fetch to v2.6.4 ([92810ba](https://github.com/eik-lib/postcss-import-map/commit/92810ba91fbb6c7611e6fbd899370197f1c58a8f))
7
+
8
+ ## [3.0.2](https://github.com/eik-lib/postcss-import-map/compare/v3.0.1...v3.0.2) (2021-09-21)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency node-fetch to v2.6.3 ([7d74f72](https://github.com/eik-lib/postcss-import-map/commit/7d74f72e111b127189158da8cfdce838292ca7c6))
14
+
15
+ ## [3.0.1](https://github.com/eik-lib/postcss-import-map/compare/v3.0.0...v3.0.1) (2021-09-06)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **deps:** update dependency node-fetch to v2.6.2 ([fcf0ae5](https://github.com/eik-lib/postcss-import-map/commit/fcf0ae5659a7f0ace755b7e36d10c6d52fd3621c))
21
+
22
+ # [3.0.0](https://github.com/eik-lib/postcss-import-map/compare/v2.0.4...v3.0.0) (2021-08-13)
23
+
24
+
25
+ ### Features
26
+
27
+ * Rename module to @eik/postcss-plugin ([#83](https://github.com/eik-lib/postcss-import-map/issues/83)) ([7efa758](https://github.com/eik-lib/postcss-import-map/commit/7efa758f4dc8162e4ca500a7628d7c80f4151b61))
28
+ * Use @eik/common to load config in a project ([#84](https://github.com/eik-lib/postcss-import-map/issues/84)) ([371dcda](https://github.com/eik-lib/postcss-import-map/commit/371dcda2c5245c3759ee4c45e27fc64f926f88fc))
29
+
30
+
31
+ ### BREAKING CHANGES
32
+
33
+ * Use logic in @eik/common to load config from eik.json or package.json
34
+
35
+ * chore: Adjust for PR comments
36
+
37
+ * chore: Remove extra whitespace
38
+
39
+ Co-authored-by: Trygve Lie <trygve.lie@finn.no>
40
+ * Rename module to @eik/postcss-plugin
41
+
42
+ Co-authored-by: Trygve Lie <trygve.lie@finn.no>
43
+
1
44
  # [3.0.0-next.2](https://github.com/eik-lib/postcss-import-map/compare/v3.0.0-next.1...v3.0.0-next.2) (2021-03-02)
2
45
 
3
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/postcss-plugin",
3
- "version": "3.0.0-next.2",
3
+ "version": "3.0.3",
4
4
  "description": "PostCSS plugin that uses Eik defined import map files to transform bare import specifiers to absolute URLs in @import rules",
5
5
  "main": "src/plugin.js",
6
6
  "files": [
@@ -34,23 +34,24 @@
34
34
  "devDependencies": {
35
35
  "@semantic-release/changelog": "5.0.1",
36
36
  "@semantic-release/commit-analyzer": "8.0.1",
37
- "@semantic-release/git": "9.0.0",
38
- "@semantic-release/github": "7.2.0",
39
- "@semantic-release/npm": "7.0.10",
40
- "@semantic-release/release-notes-generator": "9.0.1",
41
- "eslint": "7.20.0",
37
+ "@semantic-release/git": "9.0.1",
38
+ "@semantic-release/github": "7.2.3",
39
+ "@semantic-release/npm": "7.1.3",
40
+ "@semantic-release/release-notes-generator": "9.0.3",
41
+ "eslint": "7.32.0",
42
42
  "eslint-config-airbnb-base": "14.2.1",
43
- "eslint-plugin-import": "2.22.1",
44
- "eslint-config-prettier": "8.0.0",
45
- "fastify": "3.12.0",
46
- "postcss": "8.2.6",
47
- "semantic-release": "17.3.9",
43
+ "eslint-plugin-import": "2.24.2",
44
+ "eslint-config-prettier": "8.3.0",
45
+ "fastify": "3.21.3",
46
+ "postcss": "8.3.6",
47
+ "rollup": "2.56.3",
48
+ "semantic-release": "17.4.7",
48
49
  "tap": "14.11.0"
49
50
  },
50
51
  "dependencies": {
51
52
  "@eik/common": "4.0.0-next.4",
52
53
  "css-url-parser": "1.1.3",
53
- "node-fetch": "2.6.1"
54
+ "node-fetch": "2.6.4"
54
55
  },
55
56
  "peerDependencies": {
56
57
  "postcss": "^8.0.0"