@awsless/awsless 0.0.379 → 0.0.380

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
@@ -14684,7 +14684,7 @@ var runTests = async (tests, stackFilters = [], testFilters = []) => {
14684
14684
 
14685
14685
  // src/cli/command/deploy.ts
14686
14686
  var deploy = (program2) => {
14687
- program2.command("deploy").argument("[stacks...]", "Optionally filter stacks to deploy").option("--skip-tests", "Skip tests").description("Deploy your app to AWS").action(async (filters) => {
14687
+ program2.command("deploy").argument("[stacks...]", "Optionally filter stacks to deploy").option("--skip-tests", "Skip tests").description("Deploy your app to AWS").action(async (filters, options) => {
14688
14688
  await layout("deploy", async ({ appConfig, stackConfigs }) => {
14689
14689
  const region = appConfig.region;
14690
14690
  const credentials = getCredentials(appConfig.profile);
@@ -14704,13 +14704,13 @@ var deploy = (program2) => {
14704
14704
  throw new Cancelled();
14705
14705
  }
14706
14706
  }
14707
- if (!program2.opts().skipTests) {
14707
+ if (!options.skipTests) {
14708
14708
  const passed = await runTests(tests, filters);
14709
14709
  if (!passed) {
14710
14710
  throw new Cancelled();
14711
14711
  }
14712
- await buildAssets(builders, filters);
14713
14712
  }
14713
+ await buildAssets(builders, filters);
14714
14714
  const { workspace, stateProvider } = createWorkSpace({
14715
14715
  credentials,
14716
14716
  accountId,
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/awsless",
3
- "version": "0.0.379",
3
+ "version": "0.0.380",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -28,17 +28,17 @@
28
28
  }
29
29
  },
30
30
  "peerDependencies": {
31
- "@awsless/lambda": "^0.0.26",
32
31
  "@awsless/iot": "^0.0.2",
32
+ "@awsless/mqtt": "^0.0.2",
33
33
  "@awsless/open-search": "^0.0.15",
34
- "@awsless/sns": "^0.0.7",
35
- "@awsless/redis": "^0.0.13",
36
34
  "@awsless/s3": "^0.0.18",
35
+ "@awsless/lambda": "^0.0.26",
36
+ "@awsless/sns": "^0.0.7",
37
37
  "@awsless/ssm": "^0.0.7",
38
- "@awsless/mqtt": "^0.0.2",
38
+ "@awsless/validate": "^0.0.15",
39
39
  "@awsless/sqs": "^0.0.7",
40
- "@awsless/weak-cache": "^0.0.1",
41
- "@awsless/validate": "^0.0.15"
40
+ "@awsless/redis": "^0.0.13",
41
+ "@awsless/weak-cache": "^0.0.1"
42
42
  },
43
43
  "dependencies": {
44
44
  "@arcanyx/cidr-slicer": "^0.3.0",
@@ -113,12 +113,12 @@
113
113
  "zod": "^3.21.4",
114
114
  "zod-to-json-schema": "^3.22.3",
115
115
  "@awsless/code": "^0.0.10",
116
+ "@awsless/duration": "^0.0.1",
116
117
  "@awsless/formation": "^0.0.56",
117
118
  "@awsless/graphql": "^0.0.9",
118
119
  "@awsless/size": "^0.0.1",
119
- "@awsless/duration": "^0.0.1",
120
- "@awsless/validate": "^0.0.15",
121
- "@awsless/ts-file-cache": "^0.0.10"
120
+ "@awsless/ts-file-cache": "^0.0.10",
121
+ "@awsless/validate": "^0.0.15"
122
122
  },
123
123
  "devDependencies": {
124
124
  "@node-rs/bcrypt": "^1.10.5"