Skip to content

Commit

Permalink
Review
Browse files Browse the repository at this point in the history
  • Loading branch information
igorschechtel committed Aug 14, 2024
1 parent 2376f3a commit c4db850
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 140 deletions.
48 changes: 34 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/v1-ready/ironclad/defaultConfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "ironclad",
"label": "ironclad",
"label": "Ironclad",
"productUrl": "https://ironcladapp.com",
"apiDocs": "https://developer.ironcladapp.com/reference",
"logoUrl": "https://friggframework.org/assets/img/ironclad-icon.png",
"categories": [],
"description": "ironclad"
"description": "Ironclad"
}
16 changes: 14 additions & 2 deletions packages/v1-ready/ironclad/jest-setup.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
const {globalSetup} = require('@friggframework/test');
module.exports = globalSetup;
const { globalSetup } = require('@friggframework/test');

module.exports = async () => {
globalSetup();

process.env = {
...process.env,
IRONCLAD_CLIENT_ID: 'some-client-id',
IRONCLAD_CLIENT_SECRET: 'some-client-secret',
IRONCLAD_SCOPE: 'scope1 scope2',
IRONCLAD_SUBDOMAIN: 'subdomain',
REDIRECT_URI: 'https://example.com',
};
};
12 changes: 6 additions & 6 deletions packages/v1-ready/ironclad/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@friggframework/api-module-ironclad",
"version": "1.0.0",
"version": "1.0.1",
"prettier": "@friggframework/prettier-config",
"description": "Ironclad API module that lets the Frigg Framework interact with Ironclad",
"main": "index.js",
Expand All @@ -12,18 +12,18 @@
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@friggframework/devtools": "^1.2.0",
"@friggframework/prettier-config": "^1.2.0",
"@friggframework/test": "^1.2.0",
"@friggframework/devtools": "^1.2.2",
"@friggframework/prettier-config": "^1.2.2",
"@friggframework/test": "^1.2.2",
"dotenv": "^16.4.5",
"eslint": "^9.8.0",
"eslint": "^9.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^3.3.3"
},
"dependencies": {
"@friggframework/core": "^1.2.0"
"@friggframework/core": "^1.2.2"
},
"publishConfig": {
"access": "public"
Expand Down
116 changes: 0 additions & 116 deletions packages/v1-ready/ironclad/tests/auther.test.js

This file was deleted.

0 comments on commit c4db850

Please sign in to comment.