-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
79 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ coverage | |
.next/ | ||
out/ | ||
build | ||
dist | ||
|
||
# misc | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,49 @@ | ||
{ | ||
"name": "rocket.chat", | ||
"version": "4.7.0-develop", | ||
"description": "Rocket.Chat Monorepo", | ||
"main": "index.js", | ||
"private": true, | ||
"scripts": { | ||
"postinstall": "husky install", | ||
"build": "turbo run build", | ||
"testunit": "turbo run testunit", | ||
"dev": "turbo run dev --parallel", | ||
"lint": "turbo run lint" | ||
}, | ||
"devDependencies": { | ||
"husky": "^7.0.1", | ||
"turbo": "latest" | ||
}, | ||
"workspaces": [ | ||
"apps/*", | ||
"packages/*" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/RocketChat/Rocket.Chat.git" | ||
}, | ||
"author": "", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/RocketChat/Rocket.Chat/issues" | ||
}, | ||
"homepage": "https://github.com/RocketChat/Rocket.Chat#readme", | ||
"engines": { | ||
"npm": ">=7.0.0", | ||
"node": ">=14.0.0" | ||
}, | ||
"packageManager": "yarn@3.2.0", | ||
"houston": { | ||
"minTag": "0.55.0-rc.0", | ||
"updateFiles": [ | ||
"apps/meteor/package.json", | ||
"apps/meteor/package-lock.json", | ||
"apps/meteor/.snapcraft/snap/snapcraft.yaml", | ||
"apps/meteor/.snapcraft/resources/prepareRocketChat", | ||
"apps/meteor/.docker/Dockerfile.rhel", | ||
"apps/meteor/app/utils/rocketchat.info" | ||
] | ||
} | ||
"name": "rocket.chat", | ||
"version": "4.7.0-develop", | ||
"description": "Rocket.Chat Monorepo", | ||
"main": "index.js", | ||
"private": true, | ||
"scripts": { | ||
"postinstall": "husky install", | ||
"build": "turbo run build", | ||
"build:ci": "turbo run build:ci", | ||
"testunit": "turbo run testunit", | ||
"dev": "turbo run dev --parallel", | ||
"lint": "turbo run lint" | ||
}, | ||
"devDependencies": { | ||
"husky": "^7.0.1", | ||
"turbo": "latest" | ||
}, | ||
"workspaces": [ | ||
"apps/*", | ||
"packages/*" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/RocketChat/Rocket.Chat.git" | ||
}, | ||
"author": "", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/RocketChat/Rocket.Chat/issues" | ||
}, | ||
"homepage": "https://github.com/RocketChat/Rocket.Chat#readme", | ||
"engines": { | ||
"npm": ">=7.0.0", | ||
"node": ">=14.0.0" | ||
}, | ||
"packageManager": "yarn@3.2.0", | ||
"houston": { | ||
"minTag": "0.55.0-rc.0", | ||
"updateFiles": [ | ||
"apps/meteor/package.json", | ||
"apps/meteor/package-lock.json", | ||
"apps/meteor/.snapcraft/snap/snapcraft.yaml", | ||
"apps/meteor/.snapcraft/resources/prepareRocketChat", | ||
"apps/meteor/.docker/Dockerfile.rhel", | ||
"apps/meteor/app/utils/rocketchat.info" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,29 @@ | ||
{ | ||
"$schema": "https://turborepo.org/schema.json", | ||
"pipeline": { | ||
"build": { | ||
"dependsOn": ["^build"], | ||
"outputs": ["dist/**"] | ||
}, | ||
"testunit": { | ||
"outputs": [] | ||
}, | ||
"lint": { | ||
"outputs": [] | ||
}, | ||
"translation-check": { | ||
"outputs": [] | ||
}, | ||
"typecheck": { | ||
"outputs": [] | ||
}, | ||
"dev": { | ||
"cache": false | ||
} | ||
} | ||
"pipeline": { | ||
"build": { | ||
"dependsOn": ["^build"], | ||
"outputs": ["dist/**"] | ||
}, | ||
"build:ci": { | ||
"dependsOn": ["build"], | ||
"outputs": ["dist/**"] | ||
}, | ||
"testunit": { | ||
"outputs": [] | ||
}, | ||
"lint": { | ||
"outputs": [] | ||
}, | ||
"translation-check": { | ||
"outputs": [] | ||
}, | ||
"typecheck": { | ||
"dependsOn": ["build"], | ||
"outputs": [] | ||
}, | ||
"dev": { | ||
"cache": false | ||
} | ||
} | ||
} |