@digigov/cli-app 0.6.5 → 0.6.6
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 +20 -0
- package/CHANGELOG.md +8 -1
- package/package.json +3 -3
- package/tailwind.common.js +1 -0
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-app",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.6.6",
|
|
6
|
+
"tag": "@digigov/cli-app_v0.6.6",
|
|
7
|
+
"date": "Wed, 16 Feb 2022 12:49:28 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Add paths for `@digigov/react-extensions` in tsconfig"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"dependency": [
|
|
15
|
+
{
|
|
16
|
+
"comment": "Updating dependency \"@digigov/cli-build\" from `0.7.0` to `0.7.1`"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"comment": "Updating dependency \"@digigov/css\" from `0.8.2` to `0.9.0`"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
4
24
|
{
|
|
5
25
|
"version": "0.6.5",
|
|
6
26
|
"tag": "@digigov/cli-app_v0.6.5",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Change Log - @digigov/cli-app
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 16 Feb 2022 12:49:28 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.6.6
|
|
6
|
+
Wed, 16 Feb 2022 12:49:28 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- Add paths for `@digigov/react-extensions` in tsconfig
|
|
4
11
|
|
|
5
12
|
## 0.6.5
|
|
6
13
|
Mon, 14 Feb 2022 09:56:29 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/cli-app",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
4
4
|
"description": "@digigov developer cli tool",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "GRNET Developers <devs@lists.grnet.gr>",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"express": "4.17.1",
|
|
11
11
|
"http-proxy-middleware": "1.0.3",
|
|
12
12
|
"next-images": "1.3.0",
|
|
13
|
-
"@digigov/cli-build": "0.7.
|
|
13
|
+
"@digigov/cli-build": "0.7.1",
|
|
14
14
|
"url-loader": "4.1.1",
|
|
15
15
|
"next": "10.0.9"
|
|
16
16
|
},
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"autoprefixer": "10.0.4",
|
|
25
25
|
"postcss": "8.2.6",
|
|
26
26
|
"tailwindcss": "2.2.4",
|
|
27
|
-
"@digigov/css": "0.
|
|
27
|
+
"@digigov/css": "0.9.0"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {}
|
|
30
30
|
}
|
package/tailwind.common.js
CHANGED
|
@@ -2,6 +2,7 @@ module.exports = {
|
|
|
2
2
|
purge: [
|
|
3
3
|
'./src/**/*.{js,ts,jsx,tsx}',
|
|
4
4
|
'./node_modules/@digigov/react-core/[!node_modules]**/*.{js,ts,jsx,tsx}',
|
|
5
|
+
'./node_modules/@digigov/react-extensions/[!node_modules]**/*.{js,ts,jsx,tsx}',
|
|
5
6
|
],
|
|
6
7
|
darkMode: false, // or 'media' or 'class'
|
|
7
8
|
theme: {
|