-
Notifications
You must be signed in to change notification settings - Fork 0
upstream merge template repository #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,7 @@ | |
| }, | ||
| "typecheck": { | ||
| "executor": "nx:run-commands", | ||
| "dependsOn": ["^build"], | ||
| "options": { | ||
|
Comment on lines
24
to
27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Adding Useful? React with 👍 / 👎. |
||
| "command": "tsgo -p packages/event-log/tsconfig.check.json" | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,11 @@ | ||
| { | ||
| "name": "expo-bip39", | ||
| "name": "@xstack/expo-bip39", | ||
| "type": "module", | ||
| "version": "0.0.0", | ||
| "sideEffects": false, | ||
| "main": "dist/index.js", | ||
| "types": "dist/index.d.ts", | ||
| "files": [ | ||
| "./dist" | ||
| ], | ||
| "scripts": { | ||
| "typecheck": "tsgo -p tsconfig.check.json", | ||
| "build": "rm -rf dist && tsc --build tsconfig.build.json" | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| { | ||
| "name": "pkgs-expo-bip39", | ||
| "$schema": "../../node_modules/nx/schemas/project-schema.json", | ||
| "sourceRoot": "packages/expo-bip39/src", | ||
| "projectType": "library", | ||
| "targets": { | ||
| "test": { | ||
| "executor": "nx:run-commands", | ||
| "outputs": [ | ||
| "{workspaceRoot}/node_modules/.vitest/packages/expo-bip39", | ||
| "{workspaceRoot}/coverage/packages/expo-bip39" | ||
| ], | ||
| "options": { | ||
| "command": "pnpm xdev test --project pkgs-expo-bip39" | ||
| } | ||
| }, | ||
| "build": { | ||
| "executor": "nx:run-commands", | ||
| "outputs": ["{projectRoot}/dist"], | ||
| "options": { | ||
| "command": "tsc --build tsconfig.build.json", | ||
| "cwd": "packages/expo-bip39" | ||
| } | ||
| }, | ||
| "madge": { | ||
| "executor": "nx:run-commands", | ||
| "options": { | ||
| "command": "madge --ts-config ./tsconfig.lib.json --circular --no-color --no-spinner --extensions ts,tsx ./src", | ||
| "cwd": "packages/expo-bip39" | ||
| } | ||
| }, | ||
| "typecheck": { | ||
| "executor": "nx:run-commands", | ||
| "options": { | ||
| "command": "tsgo -p packages/expo-bip39/tsconfig.check.json" | ||
| } | ||
| } | ||
| }, | ||
| "tags": [] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| export { Paddle } from '@xstack/purchase/payment/paddle' | ||
|
|
||
| export { Stripe } from '@xstack/purchase/payment/stripe' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dependency was renamed to
@xstack/expo-bip39, butpnpm-lock.yamlstill pins the old unscopedexpo-bip39entry (e.g., lines 369–371). Withpnpm install --frozen-lockfilethe installer now fails because the new specifier has no matching lock entry, blocking installs until the lockfile is regenerated for the scoped name.Useful? React with 👍 / 👎.