-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(repo): refactor to multiple packages with isomorphic support
- Loading branch information
Showing
80 changed files
with
22,468 additions
and
35,806 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"name": "c8-sdk", | ||
"version": "1.0.0", | ||
"main": "commitlint.config.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 0", | ||
"sm:start": "docker compose -f docker/docker-compose-multitenancy.yaml -f docker/docker-compose-modeler.yaml up -d", | ||
"sm:stop": "docker compose -f docker/docker-compose-multitenancy.yaml -f docker/docker-compose-modeler.yaml down" | ||
}, | ||
"private": true, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"description": "", | ||
"workspaces": [ | ||
"packages/lossless-json", | ||
"packages/certificates", | ||
"packages/oauth", | ||
"packages/isomorphic-sdk", | ||
"packages/sdk" | ||
], | ||
"devDependencies": { | ||
"@typescript-eslint/parser": "^8.7.0", | ||
"commitizen": "^4.3.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.57.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.30.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"jest": "^29.7.0", | ||
"lint-staged": "^15.2.10", | ||
"prettier": "^3.3.3", | ||
"ts-jest": "^29.2.5", | ||
"tsconfig-paths": "^4.2.0", | ||
"tsd": "^0.31.2", | ||
"typedoc": "^0.26.7", | ||
"typedoc-plugin-missing-exports": "^3.0.0", | ||
"typescript": "^5.4.5" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "@camunda8/certificates", | ||
"version": "1.0.0", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"test": "jest", | ||
"build": "npm run clean && tsc --project tsconfig.json", | ||
"clean": "rm -rf ./dist && rm -f ./tsconfig.tsbuildinfo", | ||
"lint": "eslint 'src/**/*.{ts,tsx}'", | ||
"format": "prettier --write 'src/**/*.ts'" | ||
}, | ||
"keywords": [], | ||
"author": "Josh Wulf <[email protected]>", | ||
"license": "ISC", | ||
"description": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { GetCustomCertificateBuffer } from './lib/GetCustomCertificateBuffer' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"compilerOptions": { | ||
"composite": true /* Required because referenced by src/tsconfig.json */, | ||
/* Basic Options */ | ||
"target": "es2020" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */, | ||
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, | ||
"types": ["node", "jest"], | ||
"lib": ["es2020"], | ||
"declaration": true /* Generates corresponding '.d.ts' file. */, | ||
"sourceMap": true /* Generates corresponding '.map' file. */, | ||
"outDir": "./dist" /* Redirect output structure to the directory. */, | ||
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */, | ||
/* Strict Type-Checking Options */ | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true /* Enable all strict type-checking options. */, | ||
"noImplicitAny": false /* Raise error on expressions and declarations with an implied 'any' type. */, | ||
"noImplicitReturns": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"strictNullChecks": true, | ||
"esModuleInterop": true, | ||
"experimentalDecorators": true, | ||
"resolveJsonModule": true, | ||
"plugins": [ | ||
{ | ||
"name": "typescript-tslint-plugin" | ||
} | ||
] | ||
}, | ||
"exclude": ["node_modules", "src/__tests__/*", "test-d", "dist"] | ||
} |
Oops, something went wrong.