@mbc-cqrs-serverless/cli 0.1.27-beta.0 → 0.1.28-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mbc-cqrs-serverless/cli",
3
- "version": "0.1.27-beta.0",
3
+ "version": "0.1.28-beta.0",
4
4
  "description": "a CLI to get started with MBC CQRS serverless framework",
5
5
  "keywords": [
6
6
  "mbc",
@@ -49,5 +49,5 @@
49
49
  "devDependencies": {
50
50
  "@faker-js/faker": "^8.3.1"
51
51
  },
52
- "gitHead": "34a52ba6d89eddb8724de7f0689a1c2d32b8d6a7"
52
+ "gitHead": "44c28d41112398a69d7c93560d9a7016dd1117b1"
53
53
  }
@@ -47,7 +47,11 @@ export class PipelineStack extends Stack {
47
47
 
48
48
  const testStep = new CodeBuildStep(`${prefix}Test`, {
49
49
  projectName: `${prefix}Test`,
50
- installCommands: ['npm ci', 'npm --prefix ./infra ci'],
50
+ installCommands: [
51
+ 'npm i -g pnpm',
52
+ 'npm ci',
53
+ 'pnpm --dir ./infra install --frozen-lockfile',
54
+ ],
51
55
  commands: ['npm run test', 'npm --prefix ./infra run test'],
52
56
  primaryOutputDirectory: 'report',
53
57
  partialBuildSpec: BuildSpec.fromObject({
@@ -71,8 +75,9 @@ export class PipelineStack extends Stack {
71
75
  testOut: testStep,
72
76
  },
73
77
  commands: [
78
+ 'npm i -g pnpm',
74
79
  'cd infra',
75
- 'npm ci',
80
+ 'pnpm install --frozen-lockfile',
76
81
  'npm run build',
77
82
  'npx cdk synth ' + id + ' -e',
78
83
  ],