@diquattro/cfnassets 0.6.2 → 0.6.3

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": "@diquattro/cfnassets",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "Build asset zip packages for deployment. Fork of @awboost/cfnassets with pnpm support.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -34,7 +34,7 @@ export async function* getPackageEntries({
34
34
  } else if (lockBasename === 'yarn.lock') {
35
35
  exec = ['yarn', '--frozen-lockfile'];
36
36
  } else if (lockBasename === 'pnpm-lock.yaml') {
37
- exec = ['pnpm', 'install'];
37
+ exec = ['pnpm', 'install', '--no-frozen-lockfile'];
38
38
  } else {
39
39
  throw new Error(`unknown lockfile type for path '${packageLockPath}'`);
40
40
  }