@friggframework/core 0.2.8-canary.68.ad79b56.0 → 0.2.8

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/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ # v0.2.8 (Tue Dec 06 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix imports Worker.js [#73](https://github.com/friggframework/frigg/pull/73) ([@sheehantoufiq](https://github.com/sheehantoufiq))
6
+ - fix imports Worker.js ([@sheehantoufiq](https://github.com/sheehantoufiq))
7
+
8
+ #### Authors: 1
9
+
10
+ - Sheehan Toufiq Khan ([@sheehantoufiq](https://github.com/sheehantoufiq))
package/Worker.js CHANGED
@@ -1,7 +1,7 @@
1
1
  const AWS = require('aws-sdk');
2
2
  const _ = require('lodash');
3
- const { RequiredPropertyError } = require('../errors');
4
- const { get } = require('../assertions');
3
+ const { RequiredPropertyError } = require('@friggframework/errors');
4
+ const { get } = require('@friggframework/assertions');
5
5
 
6
6
  AWS.config.update({ region: process.env.AWS_REGION });
7
7
  const sqs = new AWS.SQS({ apiVersion: '2012-11-05' });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@friggframework/core",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "0.2.8-canary.68.ad79b56.0",
4
+ "version": "0.2.8",
5
5
  "devDependencies": {
6
6
  "@friggframework/eslint-config": "^1.0.7",
7
7
  "eslint": "^8.22.0",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "homepage": "https://github.com/friggframework/frigg#readme",
26
26
  "dependencies": {
27
- "@friggframework/assertions": "1.0.6-canary.68.ad79b56.0",
27
+ "@friggframework/assertions": "^1.0.5",
28
28
  "moment": "^2.29.4",
29
29
  "node-fetch": "^2.6.7"
30
30
  },
31
31
  "description": "",
32
- "gitHead": "ad79b560137ac78b2f8bbf0b0b8f1f813d392465"
32
+ "gitHead": "a3d0b3476bba12f3cb1456c29c22d5ee9e768ae7"
33
33
  }