Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion extras/docs/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import { nextJsConfig } from '@repo/eslint-config/next-js'

/** @type {import("eslint").Linter.Config} */
export default nextJsConfig
export default [
...nextJsConfig,
{
ignores: ['next-env.d.ts'],
},
]
12 changes: 11 additions & 1 deletion extras/docs/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
import path from 'node:path'
import { fileURLToPath } from 'node:url'

const __dirname = path.dirname(fileURLToPath(import.meta.url))
const workspaceRoot = path.join(__dirname, '..', '..')

/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
// Anchor output tracing to the monorepo root so Next.js doesn't pick up
// sibling lockfiles and mis-detect the workspace boundary during lint/build.
outputFileTracingRoot: workspaceRoot,
}

export default nextConfig
7 changes: 4 additions & 3 deletions extras/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "next dev --turbopack --port 3001",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"lint": "eslint . --max-warnings 0",
"typecheck": "tsc --noEmit",
"clean": "rimraf .next"
},
Expand All @@ -21,8 +21,9 @@
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/node": "^20.17.57",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"eslint": "^9.28.0",
"typescript": "5.5.4"
}
}
7 changes: 6 additions & 1 deletion extras/web/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import { nextJsConfig } from '@repo/eslint-config/next-js'

/** @type {import("eslint").Linter.Config} */
export default nextJsConfig
export default [
...nextJsConfig,
{
ignores: ['next-env.d.ts'],
},
]
12 changes: 11 additions & 1 deletion extras/web/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
import path from 'node:path'
import { fileURLToPath } from 'node:url'

const __dirname = path.dirname(fileURLToPath(import.meta.url))
const workspaceRoot = path.join(__dirname, '..', '..')

/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
// Anchor output tracing to the monorepo root so Next.js doesn't pick up
// sibling lockfiles and mis-detect the workspace boundary during lint/build.
outputFileTracingRoot: workspaceRoot,
}

export default nextConfig
7 changes: 4 additions & 3 deletions extras/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "next dev --turbopack --port 3000",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"lint": "eslint . --max-warnings 0",
"typecheck": "tsc --noEmit",
"clean": "rimraf .next"
},
Expand All @@ -21,8 +21,9 @@
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/node": "^20.17.57",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"eslint": "^9.28.0",
"typescript": "5.5.4"
}
}
4 changes: 2 additions & 2 deletions packages/services/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@0xsequence/api",
"version": "3.0.0",
"description": "api sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/api",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/api",
"author": "Sequence Platforms Inc.",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -16,7 +16,7 @@
},
"exports": {
".": {
"types": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
Expand Down
4 changes: 2 additions & 2 deletions packages/services/builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@0xsequence/builder",
"version": "3.0.0",
"description": "builder sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/builder",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/builder",
"author": "Sequence Platforms Inc.",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -16,7 +16,7 @@
},
"exports": {
".": {
"types": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/services/guard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@0xsequence/guard",
"version": "3.0.0",
"description": "guard sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/guard",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/guard",
"author": "Sequence Platforms Inc.",
"license": "Apache-2.0",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions packages/services/indexer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@0xsequence/indexer",
"version": "3.0.0",
"description": "indexer sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/indexer",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/indexer",
"author": "Sequence Platforms Inc.",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -16,7 +16,7 @@
},
"exports": {
".": {
"types": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
Expand Down
4 changes: 2 additions & 2 deletions packages/services/marketplace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@0xsequence/marketplace",
"version": "3.0.0",
"description": "marketplace sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/marketplace",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/marketplace",
"author": "Sequence Platforms Inc.",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -16,7 +16,7 @@
},
"exports": {
".": {
"types": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
Expand Down
4 changes: 2 additions & 2 deletions packages/services/metadata/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"access": "public"
},
"description": "metadata sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/metadata",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/metadata",
"author": "Sequence Platforms Inc.",
"license": "Apache-2.0",
"scripts": {
Expand All @@ -16,7 +16,7 @@
},
"exports": {
".": {
"types": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/services/relayer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"access": "public"
},
"description": "relayer sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/relayer",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/relayer",
"author": "Sequence Platforms Inc.",
"license": "Apache-2.0",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/abi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@0xsequence/abi",
"version": "3.0.0",
"description": "abi sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/abi",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/utils/abi",
"author": "Sequence Platforms Inc.",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -16,7 +16,7 @@
},
"exports": {
".": {
"types": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
Expand Down
4 changes: 2 additions & 2 deletions packages/wallet/dapp-client/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config } from "@repo/eslint-config/react-internal";
import { config as baseConfig } from "@repo/eslint-config/base"

/** @type {import("eslint").Linter.Config} */
export default config;
export default baseConfig
4 changes: 2 additions & 2 deletions packages/wallet/primitives-cli/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config } from "@repo/eslint-config/react-internal";
import { config as baseConfig } from "@repo/eslint-config/base"

/** @type {import("eslint").Linter.Config} */
export default config;
export default baseConfig
1 change: 1 addition & 0 deletions packages/wallet/primitives-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@0xsequence/wallet-primitives-cli",
"type": "module",
"bin": "./dist/index.js",
"scripts": {
"build": "tsc",
"build:esbuild": "esbuild src/index.ts --bundle --platform=node --target=node16 --outfile=dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/wallet/primitives/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config } from "@repo/eslint-config/react-internal";
import { config as baseConfig } from "@repo/eslint-config/base"

/** @type {import("eslint").Linter.Config} */
export default config;
export default baseConfig
77 changes: 32 additions & 45 deletions pnpm-lock.yaml

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

Loading