alp-rollup-plugin-config 2.1.0 → 2.2.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 CHANGED
@@ -1,8 +1,19 @@
1
- # Change Log
1
+ # Changelog
2
2
 
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.2.0](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@2.1.0...alp-rollup-plugin-config@2.2.0) (2023-12-25)
7
+
8
+
9
+ ### Features
10
+
11
+ * **deps:** update dependency rollup to v4 ([#481](https://github.com/christophehurpeau/alp/issues/481)) ([f96b4ad](https://github.com/christophehurpeau/alp/commit/f96b4ad926d2332162a9734e942efc857d056d4c))
12
+ * update dependencies ([ddc8f92](https://github.com/christophehurpeau/alp/commit/ddc8f92cccacf6ed2baabf8555f0b37fe281ce9d))
13
+
14
+
15
+
16
+
6
17
  ## [2.1.0](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@2.0.0...alp-rollup-plugin-config@2.1.0) (2023-07-29)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,10 +1,16 @@
1
1
  {
2
2
  "name": "alp-rollup-plugin-config",
3
- "version": "2.1.0",
3
+ "version": "2.2.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
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/christophehurpeau/alp.git",
11
+ "directory": "packages/alp-rollup-plugin-config"
12
+ },
13
+ "homepage": "https://github.com/christophehurpeau/alp",
8
14
  "type": "module",
9
15
  "engines": {
10
16
  "node": ">=18.12.0"
@@ -18,19 +24,20 @@
18
24
  "./package.json": "./package.json"
19
25
  },
20
26
  "sideEffects": false,
27
+ "files": [
28
+ "lib"
29
+ ],
21
30
  "scripts": {
22
- "clean:build": "true",
23
31
  "lint": "yarn run lint:eslint",
24
32
  "lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-rollup-plugin-config"
25
33
  },
26
34
  "prettier": "@pob/root/prettier-config",
27
35
  "pob": {},
28
36
  "peerDependencies": {
29
- "rollup": "^2.64.0 || ^3.0.0"
37
+ "rollup": "^2.64.0 || ^3.0.0 || ^4.0.0"
30
38
  },
31
39
  "dependencies": {
32
40
  "@guanghechen/rollup-plugin-copy": "1.8.6",
33
41
  "js-yaml": "4.1.0"
34
- },
35
- "gitHead": "c01392e16b2d914a332fe835333dd6a82c677ab8"
36
- }
42
+ }
43
+ }
package/.editorconfig DELETED
@@ -1,13 +0,0 @@
1
- # EditorConfig helps developers define and maintain consistent
2
- # coding styles between different editors and IDEs
3
- # http://editorconfig.org
4
-
5
- root = true
6
-
7
- [*]
8
- indent_style = space
9
- indent_size = 2
10
- end_of_line = lf
11
- charset = utf-8
12
- trim_trailing_whitespace = true
13
- insert_final_newline = true
package/.eslintrc.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "root": true,
3
- "extends": ["@pob/eslint-config/root-module"]
4
- }