@awsless/awsless 0.0.378 → 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").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,9 +14704,11 @@ var deploy = (program2) => {
14704
14704
  throw new Cancelled();
14705
14705
  }
14706
14706
  }
14707
- const passed = await runTests(tests, filters);
14708
- if (!passed) {
14709
- throw new Cancelled();
14707
+ if (!options.skipTests) {
14708
+ const passed = await runTests(tests, filters);
14709
+ if (!passed) {
14710
+ throw new Cancelled();
14711
+ }
14710
14712
  }
14711
14713
  await buildAssets(builders, filters);
14712
14714
  const { workspace, stateProvider } = createWorkSpace({
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/awsless",
3
- "version": "0.0.378",
3
+ "version": "0.0.380",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -29,16 +29,16 @@
29
29
  },
30
30
  "peerDependencies": {
31
31
  "@awsless/iot": "^0.0.2",
32
+ "@awsless/mqtt": "^0.0.2",
32
33
  "@awsless/open-search": "^0.0.15",
33
34
  "@awsless/s3": "^0.0.18",
34
- "@awsless/redis": "^0.0.13",
35
- "@awsless/sqs": "^0.0.7",
36
- "@awsless/ssm": "^0.0.7",
37
35
  "@awsless/lambda": "^0.0.26",
38
- "@awsless/validate": "^0.0.15",
39
36
  "@awsless/sns": "^0.0.7",
40
- "@awsless/weak-cache": "^0.0.1",
41
- "@awsless/mqtt": "^0.0.2"
37
+ "@awsless/ssm": "^0.0.7",
38
+ "@awsless/validate": "^0.0.15",
39
+ "@awsless/sqs": "^0.0.7",
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",
@@ -115,8 +115,8 @@
115
115
  "@awsless/code": "^0.0.10",
116
116
  "@awsless/duration": "^0.0.1",
117
117
  "@awsless/formation": "^0.0.56",
118
- "@awsless/size": "^0.0.1",
119
118
  "@awsless/graphql": "^0.0.9",
119
+ "@awsless/size": "^0.0.1",
120
120
  "@awsless/ts-file-cache": "^0.0.10",
121
121
  "@awsless/validate": "^0.0.15"
122
122
  },