@awsless/awsless 0.0.21 → 0.0.22
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.cjs +5 -2
- package/dist/bin.js +5 -2
- package/package.json +1 -1
package/dist/bin.cjs
CHANGED
|
@@ -522,7 +522,7 @@ var Stack = class {
|
|
|
522
522
|
}
|
|
523
523
|
}
|
|
524
524
|
};
|
|
525
|
-
for (const resource of this) {
|
|
525
|
+
for (const resource of this.resources) {
|
|
526
526
|
const json2 = resource.toJSON();
|
|
527
527
|
walk(json2);
|
|
528
528
|
Object.assign(resources, json2);
|
|
@@ -4191,7 +4191,10 @@ var importFile = async (path) => {
|
|
|
4191
4191
|
__dirname: (id) => `'${(0, import_path2.dirname)(id)}'`
|
|
4192
4192
|
}),
|
|
4193
4193
|
(0, import_rollup_plugin_swc32.swc)({
|
|
4194
|
-
minify: false
|
|
4194
|
+
minify: false,
|
|
4195
|
+
jsc: {
|
|
4196
|
+
baseUrl: (0, import_path2.dirname)(path)
|
|
4197
|
+
}
|
|
4195
4198
|
})
|
|
4196
4199
|
]
|
|
4197
4200
|
});
|
package/dist/bin.js
CHANGED
|
@@ -502,7 +502,7 @@ var Stack = class {
|
|
|
502
502
|
}
|
|
503
503
|
}
|
|
504
504
|
};
|
|
505
|
-
for (const resource of this) {
|
|
505
|
+
for (const resource of this.resources) {
|
|
506
506
|
const json2 = resource.toJSON();
|
|
507
507
|
walk(json2);
|
|
508
508
|
Object.assign(resources, json2);
|
|
@@ -4168,7 +4168,10 @@ var importFile = async (path) => {
|
|
|
4168
4168
|
__dirname: (id) => `'${dirname(id)}'`
|
|
4169
4169
|
}),
|
|
4170
4170
|
swc2({
|
|
4171
|
-
minify: false
|
|
4171
|
+
minify: false,
|
|
4172
|
+
jsc: {
|
|
4173
|
+
baseUrl: dirname(path)
|
|
4174
|
+
}
|
|
4172
4175
|
})
|
|
4173
4176
|
]
|
|
4174
4177
|
});
|