carlin 1.20.2 → 1.21.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.
|
@@ -5,7 +5,24 @@ const s3_1 = require("../s3");
|
|
|
5
5
|
/**
|
|
6
6
|
* Fixes #20 https://github.com/ttoss/carlin/issues/20
|
|
7
7
|
*/
|
|
8
|
-
exports.defaultBuildFolders = [
|
|
8
|
+
exports.defaultBuildFolders = [
|
|
9
|
+
/**
|
|
10
|
+
* Create React App default build folder
|
|
11
|
+
*/
|
|
12
|
+
'build',
|
|
13
|
+
/**
|
|
14
|
+
* Next.js default output folder
|
|
15
|
+
*/
|
|
16
|
+
'out',
|
|
17
|
+
/**
|
|
18
|
+
* Storybook default output folder
|
|
19
|
+
*/
|
|
20
|
+
'storybook-static',
|
|
21
|
+
/**
|
|
22
|
+
* Vite.js default build folder
|
|
23
|
+
*/
|
|
24
|
+
'dist',
|
|
25
|
+
];
|
|
9
26
|
const findDefaultBuildFolder = async () => {
|
|
10
27
|
/**
|
|
11
28
|
* Valid folders have at least one file inside.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "carlin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"author": "Pedro Arantes <arantespp@gmail.com> (https://twitter.com/arantespp)",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"yargs": "^17.6.2"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@ttoss/test-utils": "^1.18.
|
|
53
|
+
"@ttoss/test-utils": "^1.18.3",
|
|
54
54
|
"@types/adm-zip": "^0.5.0",
|
|
55
55
|
"@types/aws-lambda": "^8.10.109",
|
|
56
56
|
"@types/deep-equal": "^1.0.1",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"keywords": [],
|
|
70
70
|
"publishConfig": {
|
|
71
|
-
"
|
|
71
|
+
"access": "public"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "b697061d84f3b079619befbfb150e587f455dd1c"
|
|
74
74
|
}
|