0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/connectors
2023-04-07 01:22:17 +08:00
..
connector-alipay-native chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-alipay-web refactor: reorg packages 2023-04-04 16:28:48 +08:00
connector-aliyun-dm chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-aliyun-sms chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-apple refactor: reorg packages 2023-04-04 16:28:48 +08:00
connector-aws-ses chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-azuread chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-discord chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-facebook chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-feishu-web chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-github chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-google chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-kakao chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-logto-email chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-logto-sms chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-logto-social-demo chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-mock-email chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-mock-email-alternative chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-mock-sms chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-mock-social chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-naver chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-oauth2 chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-oidc refactor: reorg packages 2023-04-04 16:28:48 +08:00
connector-saml fix(deps): update dependency samlify to v2.8.10 (#3665) 2023-04-04 14:59:41 +08:00
connector-sendgrid-email chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-smtp chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-tencent-sms chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-twilio-sms chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-wechat-native chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
connector-wechat-web chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
templates chore: fix test and lint issues 2023-04-01 22:16:56 +08:00
.gitignore refactor: leverage pnpmfile for dependency installation 2023-04-01 20:53:44 +08:00
README.md refactor: leverage pnpmfile for dependency installation 2023-04-01 20:53:44 +08:00

Logto connectors directory

Template syncing

Since all connectors have a same pattern for package.json, here we leverage several techniques to avoid annoying copy-pastes:

When pnpm i

  • The "pnpm:devPreinstall" script in the project root executes templates/sync-preset.js that:
    • Check every connectors's package.json to see if there's any unexpected keys
    • Sync templates/package.json by REPLACING every template key (except dependency keys) in the current package.json with the value from the template package.json
    • Copies all config files to every connector directory
  • The hook in .pnpmfile.cjs of the project root merges dependency fields for every connector
    • Also we can update arbitrary fields in this hook, we still need to keep non-dependency fields in the connector's package.json since the hook only takes affect during pnpm i.

Caution Workspace dependencies should be defined in connector's package.json (not template) in order to let PNPM correctly resolves the workspace dependency tree;

Add a new custom field

Head to templates/sync-preset.js and update allowedCustomKeys.