mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 06:47:25 +00:00
Chore: Revert yarn dev implementation (#26075)
This commit is contained in:
parent
b01685de46
commit
3544ed0a73
2
.gitignore
vendored
2
.gitignore
vendored
@ -43,5 +43,3 @@ yarn-error.log*
|
||||
|
||||
.nvmrc
|
||||
.idea/
|
||||
|
||||
*.tsbuildinfo
|
||||
@ -18,6 +18,7 @@ to: packages/<%= name %>/package.json
|
||||
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
||||
"jest": "jest",
|
||||
"build": "rm -rf dist && tsc -p tsconfig.json",
|
||||
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
"typings": "./dist/index.d.ts",
|
||||
|
||||
@ -5,8 +5,7 @@ to: packages/<%= name %>/tsconfig.json
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"outDir": "./dist",
|
||||
"composite": true
|
||||
"outDir": "./dist"
|
||||
},
|
||||
"include": ["./src/**/*"]
|
||||
}
|
||||
|
||||
@ -10,8 +10,7 @@
|
||||
"build:services": "turbo run build --filter=rocketchat-services...",
|
||||
"build:ci": "turbo run build:ci",
|
||||
"testunit": "turbo run testunit",
|
||||
"dev:root": "tsc -b --watch --preserveWatchOutput",
|
||||
"dev": "turbo run //#dev:root dev --parallel --filter=@rocket.chat/meteor...",
|
||||
"dev": "turbo run dev --parallel --filter=@rocket.chat/meteor...",
|
||||
"dsv": "turbo run dsv --filter=@rocket.chat/meteor...",
|
||||
"lint": "turbo run lint",
|
||||
"storybook": "yarn workspace @rocket.chat/meteor run storybook"
|
||||
@ -20,8 +19,7 @@
|
||||
"@types/chart.js": "^2.9.37",
|
||||
"@types/js-yaml": "^4.0.5",
|
||||
"husky": "^7.0.4",
|
||||
"turbo": "^1.2.16",
|
||||
"typescript": "~4.3.4"
|
||||
"turbo": "1.2.5"
|
||||
},
|
||||
"workspaces": [
|
||||
"apps/*",
|
||||
|
||||
@ -14,7 +14,8 @@
|
||||
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
|
||||
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
||||
"jest": "jest",
|
||||
"build": "tsc -p tsconfig.json"
|
||||
"build": "tsc -p tsconfig.json",
|
||||
"dev": "tsc --watch --preserveWatchOutput -p tsconfig.json"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
"typings": "./dist/index.d.ts",
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"composite": true,
|
||||
"outDir": "./dist"
|
||||
},
|
||||
"include": ["./src/**/*"]
|
||||
|
||||
@ -13,6 +13,7 @@
|
||||
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
|
||||
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "tsc --watch --preserveWatchOutput -p tsconfig.json",
|
||||
"build": "rm -rf dist && tsc -p tsconfig.json"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"composite": true,
|
||||
"outDir": "./dist"
|
||||
},
|
||||
"include": ["./src/**/*"]
|
||||
|
||||
@ -9,7 +9,8 @@
|
||||
"scripts": {
|
||||
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
|
||||
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
||||
"build": "rm -rf dist && tsc -p tsconfig.json"
|
||||
"build": "rm -rf dist && tsc -p tsconfig.json",
|
||||
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
"typings": "./dist/index.d.ts",
|
||||
|
||||
@ -4,7 +4,6 @@
|
||||
"rootDir": "./src",
|
||||
"outDir": "./dist",
|
||||
"lib": ["DOM"],
|
||||
"composite": true
|
||||
},
|
||||
"include": ["./src/**/*"]
|
||||
}
|
||||
|
||||
@ -48,6 +48,7 @@
|
||||
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
||||
"test": "jest",
|
||||
"build": "rm -rf dist && tsc -p tsconfig.json",
|
||||
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput",
|
||||
"typecheck": "tsc -p tsconfig.json --noEmit",
|
||||
"storybook": "start-storybook -p 6006",
|
||||
"build-storybook": "build-storybook"
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"outDir": "./dist",
|
||||
"composite": true
|
||||
"outDir": "./dist"
|
||||
},
|
||||
"include": ["./src/**/*"]
|
||||
}
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"outDir": "./dist",
|
||||
"composite": true
|
||||
"outDir": "./dist"
|
||||
},
|
||||
"include": ["./src/**/*"]
|
||||
}
|
||||
|
||||
@ -5,7 +5,6 @@
|
||||
"outDir": "./dist",
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"composite": true
|
||||
},
|
||||
"include": ["./src/**/*"]
|
||||
}
|
||||
|
||||
@ -15,6 +15,7 @@
|
||||
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
|
||||
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
||||
"jest": "jest",
|
||||
"dev": "tsc --watch --preserveWatchOutput -p tsconfig.json",
|
||||
"build": "rm -rf dist && tsc -p tsconfig.json"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"composite": true,
|
||||
"outDir": "./dist"
|
||||
},
|
||||
"include": ["./src/**/*"]
|
||||
|
||||
@ -29,7 +29,8 @@
|
||||
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
||||
"jest": "jest",
|
||||
"build": "rm -rf dist && tsc -p tsconfig.json",
|
||||
"storybook": "start-storybook -p 6006"
|
||||
"storybook": "start-storybook -p 6006",
|
||||
"dev": "tsc -p --watch --preserveWatchOutput tsconfig.json"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
"typings": "./dist/index.d.ts",
|
||||
|
||||
@ -3,8 +3,7 @@
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src",
|
||||
"outDir": "./dist",
|
||||
"importsNotUsedAsValues": "preserve",
|
||||
"composite": true
|
||||
"importsNotUsedAsValues": "preserve"
|
||||
},
|
||||
"include": ["./src/**/*"],
|
||||
"exclude": ["**/*.stories.tsx", "**/*.stories.js"]
|
||||
|
||||
@ -30,6 +30,7 @@
|
||||
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
|
||||
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
||||
"jest": "jest",
|
||||
"dev": "tsc --watch --preserveWatchOutput -p tsconfig.json",
|
||||
"build": "rm -rf dist && tsc -p tsconfig.json"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
|
||||
@ -4,8 +4,7 @@
|
||||
"rootDir": "./src",
|
||||
"outDir": "./dist",
|
||||
"resolveJsonModule": true,
|
||||
"composite": true,
|
||||
"esModuleInterop": true,
|
||||
},
|
||||
"include": ["./src/**/*", "./src/en.json"]
|
||||
"include": ["./src/**/*"]
|
||||
}
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"jsx": "react-jsx",
|
||||
"importsNotUsedAsValues": "error",
|
||||
"importsNotUsedAsValues": "error"
|
||||
},
|
||||
"exclude": ["node_modules", "**/*.spec.ts"]
|
||||
}
|
||||
|
||||
@ -1,20 +0,0 @@
|
||||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"exclude": ["*/**"],
|
||||
"references": [
|
||||
{ "path": "./packages/core-typings" },
|
||||
{ "path": "./packages/rest-typings" },
|
||||
{ "path": "./packages/api-client" },
|
||||
{ "path": "./packages/ui-client" },
|
||||
{ "path": "./packages/ui-contexts" },
|
||||
{ "path": "./packages/favicon" },
|
||||
{ "path": "./packages/gazzodown" },
|
||||
{ "path": "./packages/ui-client" },
|
||||
{ "path": "./packages/models" },
|
||||
{ "path": "./packages/model-typings" },
|
||||
// { "path": "./packages/livechat" },
|
||||
]
|
||||
}
|
||||
@ -24,9 +24,6 @@
|
||||
"dependsOn": ["build"],
|
||||
"outputs": []
|
||||
},
|
||||
"//#dev:root": {
|
||||
"cache": false
|
||||
},
|
||||
"dev": {
|
||||
"dependsOn": ["^dev"],
|
||||
"cache": false
|
||||
|
||||
117
yarn.lock
117
yarn.lock
@ -28937,8 +28937,7 @@ __metadata:
|
||||
"@types/chart.js": ^2.9.37
|
||||
"@types/js-yaml": ^4.0.5
|
||||
husky: ^7.0.4
|
||||
turbo: ^1.2.16
|
||||
typescript: ~4.3.4
|
||||
turbo: 1.2.5
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -32020,114 +32019,106 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-darwin-64@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-darwin-64@npm:1.2.16"
|
||||
"turbo-darwin-64@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-darwin-64@npm:1.2.5"
|
||||
conditions: os=darwin & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-darwin-arm64@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-darwin-arm64@npm:1.2.16"
|
||||
"turbo-darwin-arm64@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-darwin-arm64@npm:1.2.5"
|
||||
conditions: os=darwin & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-freebsd-64@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-freebsd-64@npm:1.2.16"
|
||||
"turbo-freebsd-64@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-freebsd-64@npm:1.2.5"
|
||||
conditions: os=freebsd & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-freebsd-arm64@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-freebsd-arm64@npm:1.2.16"
|
||||
"turbo-freebsd-arm64@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-freebsd-arm64@npm:1.2.5"
|
||||
conditions: os=freebsd & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-32@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-linux-32@npm:1.2.16"
|
||||
"turbo-linux-32@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-linux-32@npm:1.2.5"
|
||||
conditions: os=linux & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-64@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-linux-64@npm:1.2.16"
|
||||
"turbo-linux-64@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-linux-64@npm:1.2.5"
|
||||
conditions: os=linux & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-arm64@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-linux-arm64@npm:1.2.16"
|
||||
"turbo-linux-arm64@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-linux-arm64@npm:1.2.5"
|
||||
conditions: os=linux & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-arm@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-linux-arm@npm:1.2.16"
|
||||
"turbo-linux-arm@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-linux-arm@npm:1.2.5"
|
||||
conditions: os=linux & cpu=arm
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-mips64le@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-linux-mips64le@npm:1.2.16"
|
||||
"turbo-linux-mips64le@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-linux-mips64le@npm:1.2.5"
|
||||
conditions: os=linux & cpu=mips64el
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-linux-ppc64le@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-linux-ppc64le@npm:1.2.16"
|
||||
"turbo-linux-ppc64le@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-linux-ppc64le@npm:1.2.5"
|
||||
conditions: os=linux & cpu=ppc64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-windows-32@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-windows-32@npm:1.2.16"
|
||||
"turbo-windows-32@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-windows-32@npm:1.2.5"
|
||||
conditions: os=win32 & cpu=ia32
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-windows-64@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-windows-64@npm:1.2.16"
|
||||
"turbo-windows-64@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo-windows-64@npm:1.2.5"
|
||||
conditions: os=win32 & cpu=x64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo-windows-arm64@npm:1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo-windows-arm64@npm:1.2.16"
|
||||
conditions: os=win32 & cpu=arm64
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"turbo@npm:^1.2.16":
|
||||
version: 1.2.16
|
||||
resolution: "turbo@npm:1.2.16"
|
||||
"turbo@npm:1.2.5":
|
||||
version: 1.2.5
|
||||
resolution: "turbo@npm:1.2.5"
|
||||
dependencies:
|
||||
turbo-darwin-64: 1.2.16
|
||||
turbo-darwin-arm64: 1.2.16
|
||||
turbo-freebsd-64: 1.2.16
|
||||
turbo-freebsd-arm64: 1.2.16
|
||||
turbo-linux-32: 1.2.16
|
||||
turbo-linux-64: 1.2.16
|
||||
turbo-linux-arm: 1.2.16
|
||||
turbo-linux-arm64: 1.2.16
|
||||
turbo-linux-mips64le: 1.2.16
|
||||
turbo-linux-ppc64le: 1.2.16
|
||||
turbo-windows-32: 1.2.16
|
||||
turbo-windows-64: 1.2.16
|
||||
turbo-windows-arm64: 1.2.16
|
||||
turbo-darwin-64: 1.2.5
|
||||
turbo-darwin-arm64: 1.2.5
|
||||
turbo-freebsd-64: 1.2.5
|
||||
turbo-freebsd-arm64: 1.2.5
|
||||
turbo-linux-32: 1.2.5
|
||||
turbo-linux-64: 1.2.5
|
||||
turbo-linux-arm: 1.2.5
|
||||
turbo-linux-arm64: 1.2.5
|
||||
turbo-linux-mips64le: 1.2.5
|
||||
turbo-linux-ppc64le: 1.2.5
|
||||
turbo-windows-32: 1.2.5
|
||||
turbo-windows-64: 1.2.5
|
||||
dependenciesMeta:
|
||||
turbo-darwin-64:
|
||||
optional: true
|
||||
@ -32153,11 +32144,9 @@ __metadata:
|
||||
optional: true
|
||||
turbo-windows-64:
|
||||
optional: true
|
||||
turbo-windows-arm64:
|
||||
optional: true
|
||||
bin:
|
||||
turbo: bin/turbo
|
||||
checksum: 245b1b28af153edd14ab35a4812a8651b1e7cbae44ce3f15b53e0a73a3cc9c4ea39734f18c966403496c37876dd57053070b5b7eb736a14f1bc7e1bfd36566f3
|
||||
checksum: cba41a5c0e586f47f30e37424a112923fab5b29fda84bf6e28dfd56e981babc3787b3c1ce487bcff1feb828045ea0369f9ec5b32b495778285aa0983d417693c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user