@awsless/awsless 0.0.54 → 0.0.55
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/dist/bin.js +4 -5
- package/package.json +2 -2
package/dist/bin.js
CHANGED
|
@@ -843,8 +843,9 @@ var rollupBundle = ({ format: format2 = "esm", minify = true, handler = "default
|
|
|
843
843
|
format: format2,
|
|
844
844
|
sourcemap: "hidden",
|
|
845
845
|
exports: "auto",
|
|
846
|
-
|
|
847
|
-
|
|
846
|
+
manualChunks: {},
|
|
847
|
+
entryFileNames: `index.${ext}`,
|
|
848
|
+
chunkFileNames: `[name].${ext}`
|
|
848
849
|
});
|
|
849
850
|
const hash = createHash("sha1");
|
|
850
851
|
const files = [];
|
|
@@ -852,13 +853,11 @@ var rollupBundle = ({ format: format2 = "esm", minify = true, handler = "default
|
|
|
852
853
|
if (item.type !== "chunk") {
|
|
853
854
|
continue;
|
|
854
855
|
}
|
|
855
|
-
const base = item.isEntry ? "index" : item.name;
|
|
856
|
-
const name = `${base}.${ext}`;
|
|
857
856
|
const code = Buffer.from(item.code, "utf8");
|
|
858
857
|
const map = item.map ? Buffer.from(item.map.toString(), "utf8") : void 0;
|
|
859
858
|
hash.update(code);
|
|
860
859
|
files.push({
|
|
861
|
-
name,
|
|
860
|
+
name: item.fileName,
|
|
862
861
|
code,
|
|
863
862
|
map
|
|
864
863
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awsless/awsless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@awsless/lambda": "^0.0.6",
|
|
27
26
|
"@awsless/sns": "^0.0.6",
|
|
28
27
|
"@awsless/sqs": "^0.0.6",
|
|
28
|
+
"@awsless/lambda": "^0.0.6",
|
|
29
29
|
"@awsless/ssm": "^0.0.7"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|