alp-rollup-plugin-config 1.1.1 → 2.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 +27 -0
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.0.0](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@1.2.0...alp-rollup-plugin-config@2.0.0) (2022-11-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * drop node 14 ([5d5f90b](https://github.com/christophehurpeau/alp/commit/5d5f90b09d8532278aba75a97f10ea90bbb27919))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * drop node 14
17
+
18
+
19
+
20
+
21
+
22
+ # [1.2.0](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@1.1.1...alp-rollup-plugin-config@1.2.0) (2022-11-15)
23
+
24
+
25
+ ### Features
26
+
27
+ * allow rollup 3 ([877d8ba](https://github.com/christophehurpeau/alp/commit/877d8ba4afdf80276d8a340bf244cac7dbfd4f72))
28
+
29
+
30
+
31
+
32
+
6
33
  ## [1.1.1](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@1.1.0...alp-rollup-plugin-config@1.1.1) (2022-10-19)
7
34
 
8
35
  **Note:** Version bump only for package alp-rollup-plugin-config
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "alp-rollup-plugin-config",
3
- "version": "1.1.1",
3
+ "version": "2.0.0",
4
4
  "description": "transform yaml config using rollup copy plugin and yaml transform",
5
5
  "keywords": [],
6
6
  "author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
7
7
  "license": "MIT",
8
8
  "type": "module",
9
9
  "engines": {
10
- "node": "^14.13.1 || >=16.0.0"
10
+ "node": ">=16.0.0"
11
11
  },
12
12
  "publishConfig": {
13
13
  "access": "public"
@@ -19,17 +19,18 @@
19
19
  },
20
20
  "sideEffects": false,
21
21
  "scripts": {
22
+ "clean:build": "true",
22
23
  "lint": "yarn run lint:eslint",
23
- "lint:eslint": "cd ../.. && yarn run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-rollup-plugin-config"
24
+ "lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-rollup-plugin-config"
24
25
  },
25
26
  "prettier": "@pob/root/prettier-config",
26
27
  "pob": {},
27
28
  "peerDependencies": {
28
- "rollup": "^2.64.0"
29
+ "rollup": "^2.64.0 || ^3.0.0"
29
30
  },
30
31
  "dependencies": {
31
32
  "@guanghechen/rollup-plugin-copy": "1.8.6",
32
33
  "js-yaml": "4.1.0"
33
34
  },
34
- "gitHead": "37573847487da0689917f2667f5c810f0136eab7"
35
+ "gitHead": "f50c153bb4ab2123eb137b375b2109734cd8fd0c"
35
36
  }