@friggframework/core 1.2.0-canary.293.50b9cd8.0 → 2.0.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/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ # v2.0.0 (Sat Mar 30 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Package redo [#294](https://github.com/friggframework/frigg/pull/294) ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - update test related imports in core ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
10
+ - missed one ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
11
+ - create test, eslint-config and prettier-config packages as base shared dependencies ([@MichaelRyanWebber](https://github.com/MichaelRyanWebber))
12
+ - Publish ([@seanspeaks](https://github.com/seanspeaks))
13
+ - Bump node and npm version for the whole repo (Fix CI) [#274](https://github.com/friggframework/frigg/pull/274) ([@seanspeaks](https://github.com/seanspeaks))
14
+ - Bump independent versions \[skip ci\] ([@seanspeaks](https://github.com/seanspeaks))
15
+
16
+ #### Authors: 2
17
+
18
+ - [@MichaelRyanWebber](https://github.com/MichaelRyanWebber)
19
+ - Sean Matthews ([@seanspeaks](https://github.com/seanspeaks))
20
+
21
+ ---
22
+
1
23
  # v1.1.0 (Wed Mar 20 2024)
2
24
 
3
25
  :tada: This release contains work from new contributors! :tada:
@@ -8,7 +8,7 @@ const {
8
8
  createModel,
9
9
  saveTestDocument,
10
10
  } = require('./test-encrypt');
11
- const { TestMongo } = require('../../../utils/test-environment');
11
+ const { TestMongo } = require('@friggframework/test');
12
12
 
13
13
  const testMongo = new TestMongo();
14
14
  const originalEnv = process.env;
package/index.js CHANGED
@@ -36,9 +36,7 @@ const {
36
36
  IntegrationHelper,
37
37
  createIntegrationRouter,
38
38
  checkRequiredParams,
39
- createFriggBackend,
40
- createMockIntegration,
41
- createMockApiObject
39
+ createFriggBackend
42
40
  } = require('./integrations/index');
43
41
  const { TimeoutCatcher } = require('./lambda/index');
44
42
  const {
@@ -57,9 +55,7 @@ const {
57
55
  Requester,
58
56
  ModuleConstants,
59
57
  ModuleFactory,
60
- Auther,
61
- testAutherDefinition,
62
- testDefinitionRequiredAuthMethods
58
+ Auther
63
59
  } = require('./module-plugin/index');
64
60
 
65
61
  // const {Sync } = require('./syncs/model');
@@ -15,5 +15,5 @@ module.exports = {
15
15
  IntegrationHelper,
16
16
  createIntegrationRouter,
17
17
  checkRequiredParams,
18
- createFriggBackend,
18
+ createFriggBackend
19
19
  };
@@ -1,2 +1,2 @@
1
- const { globalSetup } = require('../../../utils/test-environment');
1
+ const { globalSetup } = require('@friggframework/test');
2
2
  module.exports = globalSetup;
@@ -1,2 +1,2 @@
1
- const { globalTeardown } = require('../../../utils/test-environment');
1
+ const { globalTeardown } = require('@friggframework/test');
2
2
  module.exports = globalTeardown;
@@ -3,7 +3,7 @@ const sinon = require('sinon');
3
3
  const {
4
4
  overrideEnvironment,
5
5
  restoreEnvironment,
6
- } = require('../../../utils/test-environment');
6
+ } = require('@friggframework/test');
7
7
 
8
8
  /* eslint-disable no-console */
9
9
 
@@ -1,3 +1,3 @@
1
1
  require('dotenv').config();
2
- const { globalSetup } = require('../../../utils/test-environment');
2
+ const { globalSetup } = require('@friggframework/test');
3
3
  module.exports = globalSetup;
@@ -1,2 +1,2 @@
1
- const { globalTeardown } = require('../../../utils/test-environment');
1
+ const { globalTeardown } = require('@friggframework/test');
2
2
  module.exports = globalTeardown;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@friggframework/core",
3
3
  "prettier": "@friggframework/prettier-config",
4
- "version": "1.2.0-canary.293.50b9cd8.0",
4
+ "version": "2.0.0",
5
5
  "dependencies": {
6
6
  "@hapi/boom": "^10.0.1",
7
7
  "aws-sdk": "^2.1200.0",
@@ -15,6 +15,9 @@
15
15
  "node-fetch": "^2.6.7"
16
16
  },
17
17
  "devDependencies": {
18
+ "@friggframework/eslint-config": "^2.0.0",
19
+ "@friggframework/prettier-config": "^2.0.0",
20
+ "@friggframework/test": "^2.0.0",
18
21
  "@types/lodash": "^4.14.191",
19
22
  "@typescript-eslint/eslint-plugin": "^5.55.0",
20
23
  "chai": "^4.3.6",
@@ -46,5 +49,5 @@
46
49
  },
47
50
  "homepage": "https://github.com/friggframework/frigg#readme",
48
51
  "description": "",
49
- "gitHead": "50b9cd8324cb94af601837fcd4661276613ecd47"
52
+ "gitHead": "d56e109150e02915b63a47ecb87483fbd9b0776e"
50
53
  }
File without changes