@digigov/cli-build 0.8.0 → 0.8.1
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.json +17 -0
- package/CHANGELOG.md +8 -1
- package/copy-files.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-build",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.8.1",
|
|
6
|
+
"tag": "@digigov/cli-build_v0.8.1",
|
|
7
|
+
"date": "Mon, 16 May 2022 14:42:45 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Change MIT License to BSD-2-Clause"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"dependency": [
|
|
15
|
+
{
|
|
16
|
+
"comment": "Updating dependency \"@digigov/babel-ts-to-proptypes\" from `0.5.1` to `0.5.2`"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
4
21
|
{
|
|
5
22
|
"version": "0.8.0",
|
|
6
23
|
"tag": "@digigov/cli-build_v0.8.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Change Log - @digigov/cli-build
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon,
|
|
3
|
+
This log was last generated on Mon, 16 May 2022 14:42:45 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.8.1
|
|
6
|
+
Mon, 16 May 2022 14:42:45 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- Change MIT License to BSD-2-Clause
|
|
4
11
|
|
|
5
12
|
## 0.8.0
|
|
6
13
|
Mon, 18 Apr 2022 13:00:33 GMT
|
package/copy-files.js
CHANGED
|
@@ -54,7 +54,7 @@ async function prepend(file, string) {
|
|
|
54
54
|
async function addLicense(packageData) {
|
|
55
55
|
const license = `/** @license Digigov v${packageData.version}
|
|
56
56
|
*
|
|
57
|
-
* This source code is licensed under the
|
|
57
|
+
* This source code is licensed under the BSD-2-Clause license found in the
|
|
58
58
|
* LICENSE file in the root directory of this source tree.
|
|
59
59
|
*/
|
|
60
60
|
`;
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-build",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Build plugin for Digigov CLI",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"author": "GRNET Devs <devs@lists.grnet.gr>",
|
|
7
|
-
"license": "
|
|
7
|
+
"license": "BSD-2-Clause",
|
|
8
8
|
"private": false,
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@babel/cli": "7.12.1",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"glob": "7.1.6",
|
|
30
30
|
"typescript": "4.2.3",
|
|
31
31
|
"@types/node": "16.6.2",
|
|
32
|
-
"@digigov/babel-ts-to-proptypes": "0.5.
|
|
32
|
+
"@digigov/babel-ts-to-proptypes": "0.5.2",
|
|
33
33
|
"babel-plugin-istanbul": "6.0.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|