@awsless/awsless 0.0.131 → 0.0.132

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 CHANGED
@@ -6378,7 +6378,7 @@ var loadConfig = async (options) => {
6378
6378
  cwd: root2
6379
6379
  });
6380
6380
  const stacks = [];
6381
- for (const file of stackFiles) {
6381
+ for (const file of stackFiles.sort()) {
6382
6382
  debug("Load stack file:", style.info(file));
6383
6383
  const stackConfig = await readConfigWithStage(file, options.stage);
6384
6384
  setLocalBasePath(join7(process.cwd(), dirname5(file)));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/awsless",
3
- "version": "0.0.131",
3
+ "version": "0.0.132",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -87,8 +87,8 @@
87
87
  "wrap-ansi": "^8.1.0",
88
88
  "zod": "^3.21.4",
89
89
  "zod-to-json-schema": "^3.22.3",
90
- "@awsless/code": "^0.0.10",
91
- "@awsless/graphql": "^0.0.6"
90
+ "@awsless/graphql": "^0.0.6",
91
+ "@awsless/code": "^0.0.10"
92
92
  },
93
93
  "scripts": {
94
94
  "test": "pnpm code test",