@digigov/cli-build 1.0.0-rc.5 → 1.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.
- package/CHANGELOG.json +57 -0
- package/CHANGELOG.md +25 -1
- package/package.json +3 -3
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,63 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-build",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"tag": "@digigov/cli-build_v1.0.0",
|
|
7
|
+
"date": "Fri, 15 Dec 2023 15:23:56 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "major refactor"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Update library-build output to be compatible with modern tools"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"patch": [
|
|
18
|
+
{
|
|
19
|
+
"comment": "Add libs/text-search to tsconfig paths"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"comment": "Ignore lib aliases for projects with lock files"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"comment": "Add resolveJsonModule to tsconfig"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"comment": "Add new libs/benchmark & tooling/cli-benchmark to tsconfig paths"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"comment": "Replace absolute with relative paths in internal imports of built packages"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"comment": "Update import path resolution to use absolute paths"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"comment": "Update internal path import resolution when building CommonJS"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"comment": "Update cjs build output"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"major": [
|
|
44
|
+
{
|
|
45
|
+
"comment": "Upgrade versions to v1.0.0-rc"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"comment": "Refactor libs to a generic UI library removing personas organizing"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"dependency": [
|
|
52
|
+
{
|
|
53
|
+
"comment": "Updating dependency \"@digigov/babel-ts-to-proptypes\" from `1.0.0-rc.6` to `1.0.0`"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"comment": "Updating dependency \"@digigov/cli\" from `1.0.0-rc.6` to `1.0.0`"
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
},
|
|
4
61
|
{
|
|
5
62
|
"version": "0.9.1",
|
|
6
63
|
"tag": "@digigov/cli-build_v0.9.1",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
1
|
# Change Log - @digigov/cli-build
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 15 Dec 2023 15:23:56 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 1.0.0
|
|
6
|
+
Fri, 15 Dec 2023 15:23:56 GMT
|
|
7
|
+
|
|
8
|
+
### Breaking changes
|
|
9
|
+
|
|
10
|
+
- Upgrade versions to v1.0.0-rc
|
|
11
|
+
- Refactor libs to a generic UI library removing personas organizing
|
|
12
|
+
|
|
13
|
+
### Minor changes
|
|
14
|
+
|
|
15
|
+
- major refactor
|
|
16
|
+
- Update library-build output to be compatible with modern tools
|
|
17
|
+
|
|
18
|
+
### Patches
|
|
19
|
+
|
|
20
|
+
- Add libs/text-search to tsconfig paths
|
|
21
|
+
- Ignore lib aliases for projects with lock files
|
|
22
|
+
- Add resolveJsonModule to tsconfig
|
|
23
|
+
- Add new libs/benchmark & tooling/cli-benchmark to tsconfig paths
|
|
24
|
+
- Replace absolute with relative paths in internal imports of built packages
|
|
25
|
+
- Update import path resolution to use absolute paths
|
|
26
|
+
- Update internal path import resolution when building CommonJS
|
|
27
|
+
- Update cjs build output
|
|
4
28
|
|
|
5
29
|
## 0.9.1
|
|
6
30
|
Tue, 21 Feb 2023 09:58:34 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-build",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Build plugin for Digigov CLI",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"author": "GRNET Devs <devs@lists.grnet.gr>",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"glob": "7.1.6",
|
|
30
30
|
"typescript": "4.9.5",
|
|
31
31
|
"@types/node": "16.6.2",
|
|
32
|
-
"@digigov/babel-ts-to-proptypes": "1.0.0
|
|
32
|
+
"@digigov/babel-ts-to-proptypes": "1.0.0",
|
|
33
33
|
"babel-plugin-istanbul": "6.0.0",
|
|
34
34
|
"publint": "0.1.8"
|
|
35
35
|
},
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"publint": "0.1.8"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@digigov/cli": "1.0.0
|
|
40
|
+
"@digigov/cli": "1.0.0",
|
|
41
41
|
"rimraf": "3.0.2",
|
|
42
42
|
"next": "10.0.9"
|
|
43
43
|
},
|