@awsless/awsless 0.0.160 → 0.0.161

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
@@ -7308,6 +7308,7 @@ var assetBuilder = (app) => {
7308
7308
  async read(fingerprint, files) {
7309
7309
  const prev = await getFingerPrint();
7310
7310
  if (prev !== fingerprint) {
7311
+ debug("Outdated fingerprint:", asset.type, asset.id);
7311
7312
  throw new TypeError(`Outdated fingerprint: ${fingerprint}`);
7312
7313
  }
7313
7314
  return Promise.all(
@@ -7970,6 +7971,7 @@ var assetPublisher = (config2, app) => {
7970
7971
  async read(fingerprint, files) {
7971
7972
  const prev = await readFile7(getFullPath("FINGER_PRINT"), "utf8");
7972
7973
  if (prev !== fingerprint) {
7974
+ debug("Outdated fingerprint:", asset.type, asset.id);
7973
7975
  throw new TypeError(`Outdated fingerprint: ${fingerprint}`);
7974
7976
  }
7975
7977
  return Promise.all(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/awsless",
3
- "version": "0.0.160",
3
+ "version": "0.0.161",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -31,9 +31,9 @@
31
31
  "@awsless/lambda": "^0.0.18",
32
32
  "@awsless/redis": "^0.0.10",
33
33
  "@awsless/s3": "^0.0.10",
34
- "@awsless/ssm": "^0.0.7",
35
34
  "@awsless/sns": "^0.0.7",
36
35
  "@awsless/sqs": "^0.0.7",
36
+ "@awsless/ssm": "^0.0.7",
37
37
  "@awsless/validate": "^0.0.13",
38
38
  "@awsless/weak-cache": "^0.0.1"
39
39
  },