alp-rollup-plugin-config 4.0.2 → 4.1.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/package.json +24 -22
- package/CHANGELOG.md +0 -139
package/package.json
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alp-rollup-plugin-config",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "transform yaml config using rollup copy plugin and yaml transform",
|
|
5
5
|
"keywords": [],
|
|
6
|
-
"
|
|
6
|
+
"homepage": "https://github.com/christophehurpeau/alp",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/christophehurpeau/alp/issues"
|
|
9
|
+
},
|
|
7
10
|
"license": "MIT",
|
|
11
|
+
"author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
|
|
8
12
|
"repository": {
|
|
9
13
|
"type": "git",
|
|
10
14
|
"url": "https://github.com/christophehurpeau/alp.git",
|
|
11
15
|
"directory": "packages/alp-rollup-plugin-config"
|
|
12
16
|
},
|
|
13
|
-
"
|
|
17
|
+
"files": [
|
|
18
|
+
"lib"
|
|
19
|
+
],
|
|
14
20
|
"type": "module",
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=22.18.0"
|
|
17
|
-
},
|
|
18
21
|
"sideEffects": false,
|
|
19
22
|
"main": "./lib/index.cjs",
|
|
20
23
|
"types": "./lib/index.d.ts",
|
|
@@ -30,27 +33,26 @@
|
|
|
30
33
|
"publishConfig": {
|
|
31
34
|
"access": "public"
|
|
32
35
|
},
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build": "yarn run build:definitions",
|
|
38
|
-
"build:definitions": "tsc --lib esnext --noEmit --skipLibCheck ./lib/index.d.ts",
|
|
39
|
-
"lint": "yarn run lint:eslint",
|
|
40
|
-
"lint:eslint": "yarn ../.. run eslint --quiet packages/alp-rollup-plugin-config"
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@guanghechen/rollup-plugin-copy": "1.8.6",
|
|
38
|
+
"js-yaml": "4.3.0"
|
|
41
39
|
},
|
|
42
|
-
"
|
|
43
|
-
"
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"typescript": "6.0.3"
|
|
44
42
|
},
|
|
45
|
-
"prettier": "@pob/root/prettier-config",
|
|
46
43
|
"peerDependencies": {
|
|
47
44
|
"rollup": "^2.64.0 || ^3.0.0 || ^4.0.0"
|
|
48
45
|
},
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"js-yaml": "4.1.1"
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=22.18.0"
|
|
52
48
|
},
|
|
53
|
-
"
|
|
54
|
-
"
|
|
49
|
+
"pob": {
|
|
50
|
+
"bundler": false
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "yarn run build:definitions",
|
|
54
|
+
"build:definitions": "tsc --lib esnext --noEmit --skipLibCheck ./lib/index.d.ts",
|
|
55
|
+
"lint": "yarn run lint:eslint",
|
|
56
|
+
"lint:eslint": "yarn '../..' run eslint --quiet 'packages/alp-rollup-plugin-config'"
|
|
55
57
|
}
|
|
56
58
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [4.0.2](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@4.0.1...alp-rollup-plugin-config@4.0.2) (2025-11-18)
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
* **deps:** update dependency js-yaml to v4.1.1 [security] ([#639](https://github.com/christophehurpeau/alp/issues/639))
|
|
11
|
-
|
|
12
|
-
## [4.0.1](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@4.0.0...alp-rollup-plugin-config@4.0.1) (2025-11-12)
|
|
13
|
-
|
|
14
|
-
Note: no notable changes
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [4.0.0](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@3.0.0...alp-rollup-plugin-config@4.0.0) (2025-10-27)
|
|
18
|
-
|
|
19
|
-
### ⚠ BREAKING CHANGES
|
|
20
|
-
|
|
21
|
-
* drop node 20 and build using esbuild
|
|
22
|
-
|
|
23
|
-
### Features
|
|
24
|
-
|
|
25
|
-
* drop node 20 and build using esbuild ([812c4c1](https://github.com/christophehurpeau/alp/commit/812c4c1b0ad19984e389af4382a8d1e60643e4f1))
|
|
26
|
-
|
|
27
|
-
## [3.0.0](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@2.2.1...alp-rollup-plugin-config@3.0.0) (2025-08-02)
|
|
28
|
-
|
|
29
|
-
### ⚠ BREAKING CHANGES
|
|
30
|
-
|
|
31
|
-
* update dependencies and drop node 20
|
|
32
|
-
* update dev dependencies, replace parse-json-object-as-map with native JSON.parse, update koa
|
|
33
|
-
|
|
34
|
-
### Features
|
|
35
|
-
|
|
36
|
-
* update dependencies and drop node 20 ([fc5b322](https://github.com/christophehurpeau/alp/commit/fc5b322e076e9a3c7c4a235d16734b89fd85e211))
|
|
37
|
-
* update dev dependencies, replace parse-json-object-as-map with native JSON.parse, update koa ([5ae7723](https://github.com/christophehurpeau/alp/commit/5ae77238cafc573fe72c5eb63b103802b8b2e537))
|
|
38
|
-
|
|
39
|
-
## [2.2.1](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@2.2.0...alp-rollup-plugin-config@2.2.1) (2024-01-06)
|
|
40
|
-
|
|
41
|
-
Note: no notable changes
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## [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)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
### Features
|
|
50
|
-
|
|
51
|
-
* **deps:** update dependency rollup to v4 ([#481](https://github.com/christophehurpeau/alp/issues/481)) ([f96b4ad](https://github.com/christophehurpeau/alp/commit/f96b4ad926d2332162a9734e942efc857d056d4c))
|
|
52
|
-
* update dependencies ([ddc8f92](https://github.com/christophehurpeau/alp/commit/ddc8f92cccacf6ed2baabf8555f0b37fe281ce9d))
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## [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)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Features
|
|
61
|
-
|
|
62
|
-
* update nextjs ([3053c10](https://github.com/christophehurpeau/alp/commit/3053c1099f90b9474f1c3c333f204cffc7ba3346))
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
# [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)
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
### Features
|
|
70
|
-
|
|
71
|
-
* drop node 14 ([5d5f90b](https://github.com/christophehurpeau/alp/commit/5d5f90b09d8532278aba75a97f10ea90bbb27919))
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
### BREAKING CHANGES
|
|
75
|
-
|
|
76
|
-
* drop node 14
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
# [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)
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
### Features
|
|
86
|
-
|
|
87
|
-
* allow rollup 3 ([877d8ba](https://github.com/christophehurpeau/alp/commit/877d8ba4afdf80276d8a340bf244cac7dbfd4f72))
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
## [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)
|
|
94
|
-
|
|
95
|
-
**Note:** Version bump only for package alp-rollup-plugin-config
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
# [1.1.0](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@1.0.2...alp-rollup-plugin-config@1.1.0) (2022-10-16)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
### Features
|
|
105
|
-
|
|
106
|
-
* update to react 18 ([6ac42b8](https://github.com/christophehurpeau/alp/commit/6ac42b84b80bf76853773f3b93819666684327d1))
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
## [1.0.2](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@1.0.1...alp-rollup-plugin-config@1.0.2) (2022-02-20)
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
### Bug Fixes
|
|
116
|
-
|
|
117
|
-
* **alp-rollup-plugin-config:** fix dest with flatten false ([a99aca8](https://github.com/christophehurpeau/alp/commit/a99aca84a4dfb706fcf55820964115e63f077efb))
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
## [1.0.1](https://github.com/christophehurpeau/alp/compare/alp-rollup-plugin-config@1.0.0...alp-rollup-plugin-config@1.0.1) (2022-02-20)
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
### Bug Fixes
|
|
127
|
-
|
|
128
|
-
* **alp-rollup-plugin-config:** set flatten to false ([c7efb8c](https://github.com/christophehurpeau/alp/commit/c7efb8ce0f6453af0e9021abc32669df4dbfe87b))
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
# 1.0.0 (2022-02-13)
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
### Features
|
|
138
|
-
|
|
139
|
-
* **alp-rollup-plugin-config:** add plugin for rollup ([4d5cf63](https://github.com/christophehurpeau/alp/commit/4d5cf63af487f05e99651d6bc8959296e3cfe41e))
|