Rename directory: app -> bridge

This commit is contained in:
hensm
2023-02-26 18:04:22 +00:00
parent 3864ffdbf5
commit 33bcbc0dca
38 changed files with 29 additions and 26 deletions

View File

@@ -1,22 +1,25 @@
{
"scripts": {
"postinstall": "npm run postinstall:app && npm run postinstall:ext",
"postinstall:app": "cd app && npm install",
"postinstall": "npm run postinstall:bridge && npm run postinstall:ext",
"postinstall:bridge": "cd bridge && npm install",
"postinstall:ext": "cd ext && npm install",
"build": "npm run build:app && npm run build:ext",
"build:app": "cd app && npm run build",
"build": "npm run build:bridge && npm run build:ext",
"build:bridge": "cd bridge && npm run build",
"build:ext": "cd ext && npm run build",
"watch:ext": "cd ext && npm run watch",
"start:ext": "cd ext && npm run start",
"package": "npm run package:app && npm run package:ext",
"package:app": "cd app && npm run package",
"package": "npm run package:bridge && npm run package:ext",
"package:bridge": "cd bridge && npm run package",
"package:ext": "cd ext && npm run package",
"test": "node test/driver.js",
"install-manifest": "cd app && npm run install-manifest",
"remove-manifest": "cd app && npm run remove-manifest",
"lint": "npm run lint:app && npm run lint:ext",
"lint:app": "eslint app/src --ext .ts,.js",
"lint:ext": "eslint ext/src --ext .ts,.js,.svelte"
"install-manifest": "cd bridge && npm run install-manifest",
"remove-manifest": "cd bridge && npm run remove-manifest",
"lint": "npm run lint:bridge && npm run lint:ext",
"lint:bridge": "eslint bridge/src --ext .ts,.js",
"lint:ext": "eslint ext/src --ext .ts,.js,.svelte",
"build:app": "npm run build:bridge",
"package:app": "npm run package:bridge",
"lint:app": "npm run lint:bridge"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",