Skip to content
Open
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
150 changes: 76 additions & 74 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,80 +1,82 @@
# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
# compiled output
dist
tmp
out-tsc
# dependencies
node_modules
# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# misc
/.sass-cache
/connect.lock
/coverage
/apps/ns-wasm-test/test-output/
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
# System Files
.DS_Store
Thumbs.db
.nx/cache
.nx/workspace-data
.cursor/rules/nx-rules.mdc
.github/instructions/nx.instructions.md
.claude/worktrees
.claude/settings.local.json
.nx/polygraph
.nx/self-healing
.nx/migrate-runs
vitest.config.*.timestamp*
# Added by code-review-graph
.code-review-graph/
# Kotlin
**/.kotlin/errors/*.log
# Reasonix
.reasonix/desktop-topic-auto-title-meta.json
.reasonix/desktop-topic-created-at.json
.reasonix/desktop-topic-title-sources.json
.reasonix/desktop-topic-titles.json
.reasonix/tasks/
# DeepSeek CR local config (contains API token)
.deepseek-cr.config.json
reasonix.toml
/packages/ns-wasm3/src/vendors/wasm3-rust/target/
# pnpm local package store (created during resolution)
.pnpm-store
# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files for more about ignoring files.

# compiled output
dist
tmp
out-tsc

# dependencies
node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/apps/ns-wasm-test/test-output/
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db

.nx/cache
.nx/workspace-data
.cursor/rules/nx-rules.mdc
.github/instructions/nx.instructions.md

.claude/worktrees
.claude/settings.local.json
.nx/polygraph
.nx/self-healing
.nx/migrate-runs
vitest.config.*.timestamp*
# Added by code-review-graph
.code-review-graph/

# Kotlin
**/.kotlin/errors/*.log

# Reasonix
.reasonix/desktop-topic-auto-title-meta.json
.reasonix/desktop-topic-created-at.json
.reasonix/desktop-topic-title-sources.json
.reasonix/desktop-topic-titles.json
.reasonix/tasks/

# DeepSeek CR local config (contains API token)
.deepseek-cr.config.json

reasonix.toml

/packages/ns-wasm3/src/vendors/wasm3-rust/target/

# pnpm local package store (created during resolution)
.pnpm-store
.buck-out/
/buck-out
.buck-out/

# VS Code multi-root workspace
*.code-workspace

vite.config.*.timestamp*
210 changes: 101 additions & 109 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,115 +1,107 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json"
],
"sharedGlobals": []
},
"plugins": [
{
"plugin": "@nx/js/typescript",
"exclude": [
"apps/ns-wasm-test/*",
"apps/ns-wry-app/*"
],
"options": {
"typecheck": {
"targetName": "typecheck"
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/src/test-setup.[jt]s"
],
"sharedGlobals": []
},
"plugins": [
{
"plugin": "@nx/js/typescript",
"exclude": ["apps/ns-wasm-test/*", "apps/ns-wry-app/*"],
"options": {
"typecheck": {
"targetName": "typecheck"
},
"build": {
"targetName": "build",
"configName": "tsconfig.lib.json",
"buildDepsName": "build-deps",
"watchDepsName": "watch-deps"
}
}
},
{
"plugin": "@nx/vitest",
"options": {
"testTargetName": "test",
"ciTargetName": "test-ci",
"testMode": "watch"
}
},
"build": {
"targetName": "build",
"configName": "tsconfig.lib.json",
"buildDepsName": "build-deps",
"watchDepsName": "watch-deps"
{
"plugin": "./tools/nx-oxlint.js"
},
{
"plugin": "./tools/nx-oxfmt.js"
},
{
"plugin": "@nx/vite/plugin",
"options": {
"buildTargetName": "build",
"serveTargetName": "serve",
"devTargetName": "dev",
"previewTargetName": "preview",
"serveStaticTargetName": "serve-static",
"typecheckTargetName": "typecheck",
"buildDepsTargetName": "build-deps",
"watchDepsTargetName": "watch-deps"
}
}
],
"analytics": true,
"release": {
"version": {
"preVersionCommand": "pnpm exec nx run-many -t build"
}
}
},
{
"plugin": "@nx/vitest",
"options": {
"testTargetName": "test",
"ciTargetName": "test-ci",
"testMode": "watch"
}
},
{
"plugin": "./tools/nx-oxlint.js"
},
{
"plugin": "./tools/nx-oxfmt.js"
}
],
"analytics": true,
"release": {
"version": {
"preVersionCommand": "npx nx run-many -t build"
}
},
"targetDefaults": {
"test": {
"dependsOn": [
"^build"
]
},
"buck2-build": {
"executor": "@cross-code/nx-buck2:build",
"inputs": [
"production",
"^production"
],
"outputs": [
"{projectRoot}/.buck-out"
],
"cache": true
},
"buck2-test": {
"executor": "@cross-code/nx-buck2:test",
"inputs": [
"production",
"^production"
],
"cache": true
},
"ns-build": {
"executor": "@cross-code/nx-ns-app:build",
"cache": true,
"inputs": [
"production",
"^production"
]
},
"ns-run": {
"executor": "@cross-code/nx-ns-app:run",
"cache": false
},
"ns-debug": {
"executor": "@cross-code/nx-ns-app:debug",
"cache": false
},
"ns-clean": {
"executor": "@cross-code/nx-ns-app:clean",
"cache": false
},
"ns-prepare": {
"executor": "@cross-code/nx-ns-app:prepare",
"cache": true,
"inputs": [
"production",
"^production"
]
},
"lint": {
"cache": true
},
"format": {
"cache": true
"targetDefaults": {
"test": {
"dependsOn": ["^build"]
},
"buck2-build": {
"executor": "@cross-code/nx-buck2:build",
"inputs": ["production", "^production"],
"outputs": ["{projectRoot}/.buck-out"],
"cache": true
},
"buck2-test": {
"executor": "@cross-code/nx-buck2:test",
"inputs": ["production", "^production"],
"cache": true
},
"ns-build": {
"executor": "@cross-code/nx-ns-app:build",
"cache": true,
"inputs": ["production", "^production"]
},
"ns-run": {
"executor": "@cross-code/nx-ns-app:run",
"cache": false
},
"ns-debug": {
"executor": "@cross-code/nx-ns-app:debug",
"cache": false
},
"ns-clean": {
"executor": "@cross-code/nx-ns-app:clean",
"cache": false
},
"ns-prepare": {
"executor": "@cross-code/nx-ns-app:prepare",
"cache": true,
"inputs": ["production", "^production"]
},
"lint": {
"cache": true
},
"format": {
"cache": true
}
}
}
}
Loading
Loading