remove more debug references
This commit is contained in:
parent
a71b8ce9ad
commit
774f75fec9
|
@ -5,11 +5,9 @@
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Launch Client",
|
"name": "Launch Client",
|
||||||
"program": "${workspaceFolder}/packages/status-js/src/debug.ts",
|
"program": "${workspaceFolder}/packages/status-js/src/index.ts",
|
||||||
"preLaunchTask": "npm: build:status-js",
|
"preLaunchTask": "npm: build:status-js",
|
||||||
"outFiles": [
|
"outFiles": ["${workspaceFolder}/packages/status-js/dist/index.js"],
|
||||||
"${workspaceFolder}/packages/status-js/dist/index.js"
|
|
||||||
],
|
|
||||||
"sourceMaps": true,
|
"sourceMaps": true,
|
||||||
"smartStep": true,
|
"smartStep": true,
|
||||||
"internalConsoleOptions": "openOnSessionStart",
|
"internalConsoleOptions": "openOnSessionStart",
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"prepare": "husky install",
|
"prepare": "husky install",
|
||||||
"fix": "run-s 'fix:*' && wsrun -e -c -s fix",
|
"fix": "run-s 'fix:*' && wsrun -e -c -s fix",
|
||||||
"build": "wsrun -e -c -s build",
|
"build": "wsrun -e -c -s build",
|
||||||
"build:status-js": "yarn workspace @status-im/js debug",
|
"build:status-js": "yarn workspace @status-im/js build",
|
||||||
"build:status-react": "yarn workspace @status-im/react build",
|
"build:status-react": "yarn workspace @status-im/react build",
|
||||||
"lint": "eslint 'packages/**/*.{ts,tsx}'",
|
"lint": "eslint 'packages/**/*.{ts,tsx}'",
|
||||||
"lint:fix": "eslint 'packages/**/*.{ts,tsx}' --fix",
|
"lint:fix": "eslint 'packages/**/*.{ts,tsx}' --fix",
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
"prebuild": "rm -rf dist",
|
"prebuild": "rm -rf dist",
|
||||||
"dev": "parcel",
|
"dev": "parcel",
|
||||||
"build": "parcel build",
|
"build": "parcel build",
|
||||||
"debug": "parcel build src/debug.ts --dist-dir output",
|
|
||||||
"build:vite": "vite build",
|
"build:vite": "vite build",
|
||||||
"build:types": "tsc --emitDeclarationOnly",
|
"build:types": "tsc --emitDeclarationOnly",
|
||||||
"build:protos": "protons protos/*.proto",
|
"build:protos": "protons protos/*.proto",
|
||||||
|
|
Loading…
Reference in New Issue