Skip to content

Commit

Permalink
refactor(oauth): oauth is now an ESM module
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Oct 9, 2024
1 parent 4963a8a commit cc69799
Show file tree
Hide file tree
Showing 37 changed files with 4,027 additions and 35,408 deletions.
31,985 changes: 0 additions & 31,985 deletions package-lock.json

This file was deleted.

17 changes: 16 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,26 @@
"**/**"
]
},
"lint-staged": {
"**/*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"yarn": ">=1.22.0"
},
"installConfig": {
"hoistingLimits": "workspaces"
},
"devDependencies": {}
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"commitlint": "^19.5.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
}
}
12 changes: 10 additions & 2 deletions packages/certificates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,13 @@
"keywords": [],
"author": "Josh Wulf <[email protected]>",
"license": "ISC",
"description": ""
}
"description": "",
"dependencies": {
"debug": "^4.3.7",
"win-ca": "^3.5.1"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5"
}
}
21 changes: 6 additions & 15 deletions packages/isomorphic-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"modeler"
],
"private": false,
"sideEffects": false,
"publishConfig": {
"access": "public"
},
Expand All @@ -33,11 +34,6 @@
"type": "git",
"url": "git+https://github.com/camunda/camunda-8-js-sdk.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ts-jest": {
"diagnostics": {
"pretty": true,
Expand All @@ -61,19 +57,14 @@
"/node_modules/",
"<rootDir>/src/__tests__/config/"
],
"globalSetup": "<rootDir>/src/__tests__/config/jest.globalSetup.ts",
"globalTeardown": "<rootDir>/src/__tests__/config/jest.globalTeardown.ts"
"globalSetup": "<rootDir>/src/__tests__/config/jest.globalSetup.js",
"globalTeardown": "<rootDir>/src/__tests__/config/jest.globalTeardown.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"packages/**/*.ts": [
"prettier --write"
]
},
"dependencies": {
"@camunda8/lossless-json": "^1.0.0",
"@camunda8/oauth": "^8.6.2",
Expand All @@ -82,10 +73,11 @@
"ky": "^1.7.2",
"loglevel": "^1.9.2",
"neon-env": "^0.2.2",
"typed-emitter": "^2.1.0"
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@typescript-eslint/parser": "^8.8.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
Expand All @@ -94,11 +86,10 @@
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-xml-parser": "^4.5.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"ts-jest": "^29.2.5",
"tsconfig-paths": "^4.2.0",
"typed-emitter": "^2.1.0",
"typedoc": "^0.26.8",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.6.2",
Expand Down
Loading

0 comments on commit cc69799

Please sign in to comment.