mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 11:42:30 +03:00
a8af08de88
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
1419 lines
48 KiB
JSON
1419 lines
48 KiB
JSON
/**
|
|
* This is the main configuration file for Rush.
|
|
* For full documentation, please see https://rushjs.io
|
|
*/
|
|
{
|
|
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
|
|
|
|
/**
|
|
* (Required) This specifies the version of the Rush engine to be used in this repo.
|
|
* Rush's "version selector" feature ensures that the globally installed tool will
|
|
* behave like this release, regardless of which version is installed globally.
|
|
*
|
|
* The common/scripts/install-run-rush.js automation script also uses this version.
|
|
*
|
|
* NOTE: If you upgrade to a new major version of Rush, you should replace the "v5"
|
|
* path segment in the "$schema" field for all your Rush config files. This will ensure
|
|
* correct error-underlining and tab-completion for editors such as VS Code.
|
|
*/
|
|
"rushVersion": "5.78.0",
|
|
|
|
/**
|
|
* The next field selects which package manager should be installed and determines its version.
|
|
* Rush installs its own local copy of the package manager to ensure that your build process
|
|
* is fully isolated from whatever tools are present in the local environment.
|
|
*
|
|
* Specify one of: "pnpmVersion", "npmVersion", or "yarnVersion". See the Rush documentation
|
|
* for details about these alternatives.
|
|
*/
|
|
"pnpmVersion": "6.34.0",
|
|
|
|
// "npmVersion": "4.5.0",
|
|
// "yarnVersion": "1.9.4",
|
|
|
|
/**
|
|
* Options that are only used when the PNPM package manager is selected
|
|
*/
|
|
"pnpmOptions": {
|
|
/**
|
|
* Specifies the location of the PNPM store. There are two possible values:
|
|
*
|
|
* - "local" - use the "pnpm-store" folder in the current configured temp folder:
|
|
* "common/temp/pnpm-store" by default.
|
|
* - "global" - use PNPM's global store, which has the benefit of being shared
|
|
* across multiple repo folders, but the disadvantage of less isolation for builds
|
|
* (e.g. bugs or incompatibilities when two repos use different releases of PNPM)
|
|
*
|
|
* RUSH_PNPM_STORE_PATH will override the directory that will be used as the store
|
|
*
|
|
* In all cases, the store path will be overridden by the environment variable RUSH_PNPM_STORE_PATH.
|
|
*
|
|
* The default value is "local".
|
|
*/
|
|
// "pnpmStore": "local",
|
|
|
|
/**
|
|
* If true, then Rush will add the "--strict-peer-dependencies" option when invoking PNPM.
|
|
* This causes "rush install" to fail if there are unsatisfied peer dependencies, which is
|
|
* an invalid state that can cause build failures or incompatible dependency versions.
|
|
* (For historical reasons, JavaScript package managers generally do not treat this invalid
|
|
* state as an error.)
|
|
*
|
|
* The default value is false to avoid legacy compatibility issues.
|
|
* It is strongly recommended to set strictPeerDependencies=true.
|
|
*/
|
|
"strictPeerDependencies": false,
|
|
|
|
/**
|
|
* Configures the strategy used to select versions during installation.
|
|
*
|
|
* This feature requires PNPM version 3.1 or newer. It corresponds to the "--resolution-strategy" command-line
|
|
* option for PNPM. Possible values are "fast" and "fewer-dependencies". PNPM's default is "fast", but this may
|
|
* be incompatible with certain packages, for example the "@types" packages from DefinitelyTyped. Rush's default
|
|
* is "fewer-dependencies", which causes PNPM to avoid installing a newer version if an already installed version
|
|
* can be reused; this is more similar to NPM's algorithm.
|
|
*
|
|
* After modifying this field, it's recommended to run "rush update --full" so that the package manager
|
|
* will recalculate all version selections.
|
|
*/
|
|
// "resolutionStrategy": "fast",
|
|
|
|
/**
|
|
* If true, then `rush install` will report an error if manual modifications
|
|
* were made to the PNPM shrinkwrap file without running "rush update" afterwards.
|
|
*
|
|
* This feature protects against accidental inconsistencies that may be introduced
|
|
* if the PNPM shrinkwrap file ("pnpm-lock.yaml") is manually edited. When this
|
|
* feature is enabled, "rush update" will append a hash to the file as a YAML comment,
|
|
* and then "rush update" and "rush install" will validate the hash. Note that this does not prohibit
|
|
* manual modifications, but merely requires "rush update" be run
|
|
* afterwards, ensuring that PNPM can report or repair any potential inconsistencies.
|
|
*
|
|
* To temporarily disable this validation when invoking "rush install", use the
|
|
* "--bypass-policy" command-line parameter.
|
|
*
|
|
* The default value is false.
|
|
*/
|
|
// "preventManualShrinkwrapChanges": true,
|
|
|
|
/**
|
|
* If true, then `rush install` will use the PNPM workspaces feature to perform the
|
|
* install.
|
|
*
|
|
* This feature uses PNPM to perform the entire monorepo install. When using workspaces, Rush will
|
|
* generate a "pnpm-workspace.yaml" file referencing all local projects to install. Rush will
|
|
* also generate a "pnpmfile.js" which is used to provide preferred versions support. When install
|
|
* is run, this pnpmfile will be used to replace dependency version ranges with a smaller subset
|
|
* of the original range. If the preferred version is not fully a subset of the original version
|
|
* range, it will be left as-is. After this, the pnpmfile.js provided in the repository (if one
|
|
* exists) will be called to further modify package dependencies.
|
|
*
|
|
* This option is experimental. The default value is false.
|
|
*/
|
|
// "useWorkspaces": true
|
|
},
|
|
|
|
/**
|
|
* Older releases of the Node.js engine may be missing features required by your system.
|
|
* Other releases may have bugs. In particular, the "latest" version will not be a
|
|
* Long Term Support (LTS) version and is likely to have regressions.
|
|
*
|
|
* Specify a SemVer range to ensure developers use a Node.js version that is appropriate
|
|
* for your repo.
|
|
*
|
|
* LTS schedule: https://nodejs.org/en/about/releases/
|
|
* LTS versions: https://nodejs.org/en/download/releases/
|
|
*/
|
|
"nodeSupportedVersionRange": ">=12.13.0 <13.0.0 || >=14.15.0 <15.0.0 || >=16.0.0",
|
|
|
|
/**
|
|
* Odd-numbered major versions of Node.js are experimental. Even-numbered releases
|
|
* spend six months in a stabilization period before the first Long Term Support (LTS) version.
|
|
* For example, 8.9.0 was the first LTS version of Node.js 8. Pre-LTS versions are not recommended
|
|
* for production usage because they frequently have bugs. They may cause Rush itself
|
|
* to malfunction.
|
|
*
|
|
* Rush normally prints a warning if it detects a pre-LTS Node.js version. If you are testing
|
|
* pre-LTS versions in preparation for supporting the first LTS version, you can use this setting
|
|
* to disable Rush's warning.
|
|
*/
|
|
// "suppressNodeLtsWarning": false,
|
|
|
|
/**
|
|
* If you would like the version specifiers for your dependencies to be consistent, then
|
|
* uncomment this line. This is effectively similar to running "rush check" before any
|
|
* of the following commands:
|
|
*
|
|
* rush install, rush update, rush link, rush version, rush publish
|
|
*
|
|
* In some cases you may want this turned on, but need to allow certain packages to use a different
|
|
* version. In those cases, you will need to add an entry to the "allowedAlternativeVersions"
|
|
* section of the common-versions.json.
|
|
*/
|
|
// "ensureConsistentVersions": true,
|
|
|
|
/**
|
|
* Large monorepos can become intimidating for newcomers if project folder paths don't follow
|
|
* a consistent and recognizable pattern. When the system allows nested folder trees,
|
|
* we've found that teams will often use subfolders to create islands that isolate
|
|
* their work from others ("shipping the org"). This hinders collaboration and code sharing.
|
|
*
|
|
* The Rush developers recommend a "category folder" model, where buildable project folders
|
|
* must always be exactly two levels below the repo root. The parent folder acts as the category.
|
|
* This provides a basic facility for grouping related projects (e.g. "apps", "libraries",
|
|
* "tools", "prototypes") while still encouraging teams to organize their projects into
|
|
* a unified taxonomy. Limiting to 2 levels seems very restrictive at first, but if you have
|
|
* 20 categories and 20 projects in each category, this scheme can easily accommodate hundreds
|
|
* of projects. In practice, you will find that the folder hierarchy needs to be rebalanced
|
|
* occasionally, but if that's painful, it's a warning sign that your development style may
|
|
* discourage refactoring. Reorganizing the categories should be an enlightening discussion
|
|
* that brings people together, and maybe also identifies poor coding practices (e.g. file
|
|
* references that reach into other project's folders without using Node.js module resolution).
|
|
*
|
|
* The defaults are projectFolderMinDepth=1 and projectFolderMaxDepth=2.
|
|
*
|
|
* To remove these restrictions, you could set projectFolderMinDepth=1
|
|
* and set projectFolderMaxDepth to a large number.
|
|
*/
|
|
// "projectFolderMinDepth": 2,
|
|
// "projectFolderMaxDepth": 2,
|
|
|
|
/**
|
|
* Today the npmjs.com registry enforces fairly strict naming rules for packages, but in the early
|
|
* days there was no standard and hardly any enforcement. A few large legacy projects are still using
|
|
* nonstandard package names, and private registries sometimes allow it. Set "allowMostlyStandardPackageNames"
|
|
* to true to relax Rush's enforcement of package names. This allows upper case letters and in the future may
|
|
* relax other rules, however we want to minimize these exceptions. Many popular tools use certain punctuation
|
|
* characters as delimiters, based on the assumption that they will never appear in a package name; thus if we relax
|
|
* the rules too much it is likely to cause very confusing malfunctions.
|
|
*
|
|
* The default value is false.
|
|
*/
|
|
// "allowMostlyStandardPackageNames": true,
|
|
|
|
/**
|
|
* This feature helps you to review and approve new packages before they are introduced
|
|
* to your monorepo. For example, you may be concerned about licensing, code quality,
|
|
* performance, or simply accumulating too many libraries with overlapping functionality.
|
|
* The approvals are tracked in two config files "browser-approved-packages.json"
|
|
* and "nonbrowser-approved-packages.json". See the Rush documentation for details.
|
|
*/
|
|
// "approvedPackagesPolicy": {
|
|
// /**
|
|
// * The review categories allow you to say for example "This library is approved for usage
|
|
// * in prototypes, but not in production code."
|
|
// *
|
|
// * Each project can be associated with one review category, by assigning the "reviewCategory" field
|
|
// * in the "projects" section of rush.json. The approval is then recorded in the files
|
|
// * "common/config/rush/browser-approved-packages.json" and "nonbrowser-approved-packages.json"
|
|
// * which are automatically generated during "rush update".
|
|
// *
|
|
// * Designate categories with whatever granularity is appropriate for your review process,
|
|
// * or you could just have a single category called "default".
|
|
// */
|
|
// "reviewCategories": [
|
|
// // Some example categories:
|
|
// "production", // projects that ship to production
|
|
// "tools", // non-shipping projects that are part of the developer toolchain
|
|
// "prototypes" // experiments that should mostly be ignored by the review process
|
|
// ],
|
|
//
|
|
// /**
|
|
// * A list of NPM package scopes that will be excluded from review.
|
|
// * We recommend to exclude TypeScript typings (the "@types" scope), because
|
|
// * if the underlying package was already approved, this would imply that the typings
|
|
// * are also approved.
|
|
// */
|
|
// // "ignoredNpmScopes": ["@types"]
|
|
// },
|
|
|
|
/**
|
|
* If you use Git as your version control system, this section has some additional
|
|
* optional features you can use.
|
|
*/
|
|
"gitPolicy": {
|
|
/**
|
|
* Work at a big company? Tired of finding Git commits at work with unprofessional Git
|
|
* emails such as "beer-lover@my-college.edu"? Rush can validate people's Git email address
|
|
* before they get started.
|
|
*
|
|
* Define a list of regular expressions describing allowable e-mail patterns for Git commits.
|
|
* They are case-insensitive anchored JavaScript RegExps. Example: ".*@example\.com"
|
|
*
|
|
* IMPORTANT: Because these are regular expressions encoded as JSON string literals,
|
|
* RegExp escapes need two backslashes, and ordinary periods should be "\\.".
|
|
*/
|
|
// "allowedEmailRegExps": [
|
|
// "[^@]+@users\\.noreply\\.github\\.com",
|
|
// "travis@example\\.org"
|
|
// ],
|
|
|
|
/**
|
|
* When Rush reports that the address is malformed, the notice can include an example
|
|
* of a recommended email. Make sure it conforms to one of the allowedEmailRegExps
|
|
* expressions.
|
|
*/
|
|
// "sampleEmail": "mrexample@users.noreply.github.com",
|
|
|
|
/**
|
|
* The commit message to use when committing changes during 'rush publish'.
|
|
*
|
|
* For example, if you want to prevent these commits from triggering a CI build,
|
|
* you might configure your system's trigger to look for a special string such as "[skip-ci]"
|
|
* in the commit message, and then customize Rush's message to contain that string.
|
|
*/
|
|
// "versionBumpCommitMessage": "Applying package updates. [skip-ci]",
|
|
|
|
/**
|
|
* The commit message to use when committing changes during 'rush version'.
|
|
*
|
|
* For example, if you want to prevent these commits from triggering a CI build,
|
|
* you might configure your system's trigger to look for a special string such as "[skip-ci]"
|
|
* in the commit message, and then customize Rush's message to contain that string.
|
|
*/
|
|
// "changeLogUpdateCommitMessage": "Deleting change files and updating change logs for package updates. [skip-ci]"
|
|
},
|
|
|
|
"repository": {
|
|
/**
|
|
* The URL of this Git repository, used by "rush change" to determine the base branch for your PR.
|
|
*
|
|
* The "rush change" command needs to determine which files are affected by your PR diff.
|
|
* If you merged or cherry-picked commits from the master branch into your PR branch, those commits
|
|
* should be excluded from this diff (since they belong to some other PR). In order to do that,
|
|
* Rush needs to know where to find the base branch for your PR. This information cannot be
|
|
* determined from Git alone, since the "pull request" feature is not a Git concept. Ideally
|
|
* Rush would use a vendor-specific protocol to query the information from GitHub, Azure DevOps, etc.
|
|
* But to keep things simple, "rush change" simply assumes that your PR is against the "master" branch
|
|
* of the Git remote indicated by the repository.url setting in rush.json. If you are working in
|
|
* a GitHub "fork" of the real repo, this setting will be different from the repository URL of your
|
|
* your PR branch, and in this situation "rush change" will also automatically invoke "git fetch"
|
|
* to retrieve the latest activity for the remote master branch.
|
|
*/
|
|
"url": "https://github.com/hcengineering/anticrm",
|
|
|
|
/**
|
|
* The default branch name. This tells "rush change" which remote branch to compare against.
|
|
* The default value is "master"
|
|
*/
|
|
"defaultBranch": "main",
|
|
|
|
/**
|
|
* The default remote. This tells "rush change" which remote to compare against if the remote URL is
|
|
* not set or if a remote matching the provided remote URL is not found.
|
|
*/
|
|
"defaultRemote": "origin"
|
|
},
|
|
|
|
/**
|
|
* Event hooks are customized script actions that Rush executes when specific events occur
|
|
*/
|
|
"eventHooks": {
|
|
/**
|
|
* The list of shell commands to run before the Rush installation starts
|
|
*/
|
|
"preRushInstall": [
|
|
// "common/scripts/pre-rush-install.js"
|
|
],
|
|
|
|
/**
|
|
* The list of shell commands to run after the Rush installation finishes
|
|
*/
|
|
"postRushInstall": [],
|
|
|
|
/**
|
|
* The list of shell commands to run before the Rush build command starts
|
|
*/
|
|
"preRushBuild": [],
|
|
|
|
/**
|
|
* The list of shell commands to run after the Rush build command finishes
|
|
*/
|
|
"postRushBuild": []
|
|
},
|
|
|
|
/**
|
|
* Installation variants allow you to maintain a parallel set of configuration files that can be
|
|
* used to build the entire monorepo with an alternate set of dependencies. For example, suppose
|
|
* you upgrade all your projects to use a new release of an important framework, but during a transition period
|
|
* you intend to maintain compatibility with the old release. In this situation, you probably want your
|
|
* CI validation to build the entire repo twice: once with the old release, and once with the new release.
|
|
*
|
|
* Rush "installation variants" correspond to sets of config files located under this folder:
|
|
*
|
|
* common/config/rush/variants/<variant_name>
|
|
*
|
|
* The variant folder can contain an alternate common-versions.json file. Its "preferredVersions" field can be used
|
|
* to select older versions of dependencies (within a loose SemVer range specified in your package.json files).
|
|
* To install a variant, run "rush install --variant <variant_name>".
|
|
*
|
|
* For more details and instructions, see this article: https://rushjs.io/pages/advanced/installation_variants/
|
|
*/
|
|
"variants": [
|
|
// {
|
|
// /**
|
|
// * The folder name for this variant.
|
|
// */
|
|
// "variantName": "old-sdk",
|
|
//
|
|
// /**
|
|
// * An informative description
|
|
// */
|
|
// "description": "Build this repo using the previous release of the SDK"
|
|
// }
|
|
],
|
|
|
|
/**
|
|
* Rush can collect anonymous telemetry about everyday developer activity such as
|
|
* success/failure of installs, builds, and other operations. You can use this to identify
|
|
* problems with your toolchain or Rush itself. THIS TELEMETRY IS NOT SHARED WITH MICROSOFT.
|
|
* It is written into JSON files in the common/temp folder. It's up to you to write scripts
|
|
* that read these JSON files and do something with them. These scripts are typically registered
|
|
* in the "eventHooks" section.
|
|
*/
|
|
// "telemetryEnabled": false,
|
|
|
|
/**
|
|
* Allows creation of hotfix changes. This feature is experimental so it is disabled by default.
|
|
* If this is set, 'rush change' only allows a 'hotfix' change type to be specified. This change type
|
|
* will be used when publishing subsequent changes from the monorepo.
|
|
*/
|
|
// "hotfixChangeEnabled": false,
|
|
|
|
/**
|
|
* (Required) This is the inventory of projects to be managed by Rush.
|
|
*
|
|
* Rush does not automatically scan for projects using wildcards, for a few reasons:
|
|
* 1. Depth-first scans are expensive, particularly when tools need to repeatedly collect the list.
|
|
* 2. On a caching CI machine, scans can accidentally pick up files left behind from a previous build.
|
|
* 3. It's useful to have a centralized inventory of all projects and their important metadata.
|
|
*/
|
|
"projects": [
|
|
// {
|
|
// /**
|
|
// * The NPM package name of the project (must match package.json)
|
|
// */
|
|
// "packageName": "my-app",
|
|
//
|
|
// /**
|
|
// * The path to the project folder, relative to the rush.json config file.
|
|
// */
|
|
// "projectFolder": "apps/my-app",
|
|
//
|
|
// /**
|
|
// * An optional category for usage in the "browser-approved-packages.json"
|
|
// * and "nonbrowser-approved-packages.json" files. The value must be one of the
|
|
// * strings from the "reviewCategories" defined above.
|
|
// */
|
|
// "reviewCategory": "production",
|
|
//
|
|
// /**
|
|
// * A list of local projects that appear as devDependencies for this project, but cannot be
|
|
// * locally linked because it would create a cyclic dependency; instead, the last published
|
|
// * version will be installed in the Common folder.
|
|
// */
|
|
// "cyclicDependencyProjects": [
|
|
// // "my-toolchain"
|
|
// ],
|
|
//
|
|
// /**
|
|
// * If true, then this project will be ignored by the "rush check" command.
|
|
// * The default value is false.
|
|
// */
|
|
// // "skipRushCheck": false,
|
|
//
|
|
// /**
|
|
// * A flag indicating that changes to this project will be published to npm, which affects
|
|
// * the Rush change and publish workflows. The default value is false.
|
|
// * NOTE: "versionPolicyName" and "shouldPublish" are alternatives; you cannot specify them both.
|
|
// */
|
|
// // "shouldPublish": false,
|
|
//
|
|
// /**
|
|
// * Facilitates postprocessing of a project's files prior to publishing.
|
|
// *
|
|
// * If specified, the "publishFolder" is the relative path to a subfolder of the project folder.
|
|
// * The "rush publish" command will publish the subfolder instead of the project folder. The subfolder
|
|
// * must contain its own package.json file, which is typically a build output.
|
|
// */
|
|
// // "publishFolder": "temp/publish",
|
|
//
|
|
// /**
|
|
// * An optional version policy associated with the project. Version policies are defined
|
|
// * in "version-policies.json" file. See the "rush publish" documentation for more info.
|
|
// * NOTE: "versionPolicyName" and "shouldPublish" are alternatives; you cannot specify them both.
|
|
// */
|
|
// // "versionPolicyName": ""
|
|
// },
|
|
//
|
|
{
|
|
"packageName": "@hcengineering/platform-rig",
|
|
"projectFolder": "packages/platform-rig",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/platform",
|
|
"projectFolder": "packages/platform",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/core",
|
|
"projectFolder": "packages/core",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-ws",
|
|
"projectFolder": "server/ws",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/dev-storage",
|
|
"projectFolder": "dev/storage",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/dev-server",
|
|
"projectFolder": "dev/server",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/theme",
|
|
"projectFolder": "packages/theme",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/ui",
|
|
"projectFolder": "packages/ui",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/prod",
|
|
"projectFolder": "dev/prod",
|
|
"shouldPublish": false
|
|
},
|
|
// {
|
|
// "packageName": "@hcengineering/prod-tracker",
|
|
// "projectFolder": "products/tracker",
|
|
// "shouldPublish": false
|
|
// },
|
|
{
|
|
"packageName": "@hcengineering/server-core",
|
|
"projectFolder": "server/core",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-token",
|
|
"projectFolder": "server/token",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server",
|
|
"projectFolder": "server/server",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/login",
|
|
"projectFolder": "plugins/login",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/login-assets",
|
|
"projectFolder": "plugins/login-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/login-resources",
|
|
"projectFolder": "plugins/login-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/workbench",
|
|
"projectFolder": "plugins/workbench",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/workbench-assets",
|
|
"projectFolder": "plugins/workbench-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/workbench-resources",
|
|
"projectFolder": "plugins/workbench-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/presentation",
|
|
"projectFolder": "packages/presentation",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-presentation",
|
|
"projectFolder": "models/presentation",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/client",
|
|
"projectFolder": "plugins/client",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/client-resources",
|
|
"projectFolder": "plugins/client-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/query",
|
|
"projectFolder": "packages/query",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/view",
|
|
"projectFolder": "plugins/view",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/view-assets",
|
|
"projectFolder": "plugins/view-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/view-resources",
|
|
"projectFolder": "plugins/view-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model",
|
|
"projectFolder": "packages/model",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-core",
|
|
"projectFolder": "models/core",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-rig",
|
|
"projectFolder": "models/model-rig",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-all",
|
|
"projectFolder": "models/all",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-view",
|
|
"projectFolder": "models/view",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/contact",
|
|
"projectFolder": "plugins/contact",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/contact-assets",
|
|
"projectFolder": "plugins/contact-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/contact-resources",
|
|
"projectFolder": "plugins/contact-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/task",
|
|
"projectFolder": "plugins/task",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/task-assets",
|
|
"projectFolder": "plugins/task-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/task-resources",
|
|
"projectFolder": "plugins/task-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/dev-client-resources",
|
|
"projectFolder": "dev/client-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-workbench",
|
|
"projectFolder": "models/workbench",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-task",
|
|
"projectFolder": "models/task",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-contact",
|
|
"projectFolder": "models/contact",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/text-editor",
|
|
"projectFolder": "packages/text-editor",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/chunter",
|
|
"projectFolder": "plugins/chunter",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/chunter-assets",
|
|
"projectFolder": "plugins/chunter-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/chunter-resources",
|
|
"projectFolder": "plugins/chunter-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-chunter",
|
|
"projectFolder": "models/chunter",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/recruit",
|
|
"projectFolder": "plugins/recruit",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/recruit-assets",
|
|
"projectFolder": "plugins/recruit-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/recruit-resources",
|
|
"projectFolder": "plugins/recruit-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-recruit",
|
|
"projectFolder": "models/recruit",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-demo",
|
|
"projectFolder": "models/demo",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/image-cropper",
|
|
"projectFolder": "plugins/image-cropper",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/image-cropper-resources",
|
|
"projectFolder": "plugins/image-cropper-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-core",
|
|
"projectFolder": "models/server-core",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/dev-account",
|
|
"projectFolder": "dev/account",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-attachment",
|
|
"projectFolder": "server-plugins/attachment",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-attachment",
|
|
"projectFolder": "models/server-attachment",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-attachment-resources",
|
|
"projectFolder": "server-plugins/attachment-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-contact",
|
|
"projectFolder": "server-plugins/contact",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-contact",
|
|
"projectFolder": "models/server-contact",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-contact-resources",
|
|
"projectFolder": "server-plugins/contact-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/mongo",
|
|
"projectFolder": "server/mongo",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/elastic",
|
|
"projectFolder": "server/elastic",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/contrib",
|
|
"projectFolder": "server/contrib",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/pod-front",
|
|
"projectFolder": "pods/front",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/pod-server",
|
|
"projectFolder": "pods/server",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/front",
|
|
"projectFolder": "server/front",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/account",
|
|
"projectFolder": "server/account",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/tool",
|
|
"projectFolder": "dev/tool",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/pod-account",
|
|
"projectFolder": "pods/account",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/pod-collaborator",
|
|
"projectFolder": "pods/collaborator",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/panel",
|
|
"projectFolder": "packages/panel",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/activity",
|
|
"projectFolder": "plugins/activity",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/activity-assets",
|
|
"projectFolder": "plugins/activity-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/activity-resources",
|
|
"projectFolder": "plugins/activity-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-activity",
|
|
"projectFolder": "models/activity",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/setting",
|
|
"projectFolder": "plugins/setting",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/setting-assets",
|
|
"projectFolder": "plugins/setting-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/setting-resources",
|
|
"projectFolder": "plugins/setting-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-setting",
|
|
"projectFolder": "models/setting",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/telegram",
|
|
"projectFolder": "plugins/telegram",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/telegram-assets",
|
|
"projectFolder": "plugins/telegram-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/telegram-resources",
|
|
"projectFolder": "plugins/telegram-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-telegram",
|
|
"projectFolder": "models/telegram",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/devmodel-resources",
|
|
"projectFolder": "plugins/devmodel-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/devmodel",
|
|
"projectFolder": "plugins/devmodel",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/attachment",
|
|
"projectFolder": "plugins/attachment",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/attachment-assets",
|
|
"projectFolder": "plugins/attachment-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/attachment-resources",
|
|
"projectFolder": "plugins/attachment-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-attachment",
|
|
"projectFolder": "models/attachment",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/lead",
|
|
"projectFolder": "plugins/lead",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/lead-assets",
|
|
"projectFolder": "plugins/lead-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/lead-resources",
|
|
"projectFolder": "plugins/lead-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-lead",
|
|
"projectFolder": "models/lead",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/generator",
|
|
"projectFolder": "dev/generator",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-gmail",
|
|
"projectFolder": "models/gmail",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/gmail",
|
|
"projectFolder": "plugins/gmail",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/gmail-assets",
|
|
"projectFolder": "plugins/gmail-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/gmail-resources",
|
|
"projectFolder": "plugins/gmail-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-inventory",
|
|
"projectFolder": "models/inventory",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/inventory",
|
|
"projectFolder": "plugins/inventory",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/inventory-assets",
|
|
"projectFolder": "plugins/inventory-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/inventory-resources",
|
|
"projectFolder": "plugins/inventory-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/templates",
|
|
"projectFolder": "plugins/templates",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/templates-assets",
|
|
"projectFolder": "plugins/templates-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/templates-resources",
|
|
"projectFolder": "plugins/templates-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-templates",
|
|
"projectFolder": "models/templates",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-text-editor",
|
|
"projectFolder": "models/text-editor",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-tool",
|
|
"projectFolder": "server/tool",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/tests-sanity",
|
|
"projectFolder": "tests/sanity",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/rekoni",
|
|
"projectFolder": "packages/rekoni",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-notification",
|
|
"projectFolder": "models/notification",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/notification",
|
|
"projectFolder": "plugins/notification",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/notification-assets",
|
|
"projectFolder": "plugins/notification-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/notification-resources",
|
|
"projectFolder": "plugins/notification-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-notification",
|
|
"projectFolder": "server-plugins/notification",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-notification",
|
|
"projectFolder": "models/server-notification",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-notification-resources",
|
|
"projectFolder": "server-plugins/notification-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/tags",
|
|
"projectFolder": "plugins/tags",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/tags-assets",
|
|
"projectFolder": "plugins/tags-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/tags-resources",
|
|
"projectFolder": "plugins/tags-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-tags",
|
|
"projectFolder": "models/tags",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-chunter",
|
|
"projectFolder": "server-plugins/chunter",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-chunter",
|
|
"projectFolder": "models/server-chunter",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-chunter-resources",
|
|
"projectFolder": "server-plugins/chunter-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-inventory",
|
|
"projectFolder": "server-plugins/inventory",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-inventory",
|
|
"projectFolder": "models/server-inventory",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-inventory-resources",
|
|
"projectFolder": "server-plugins/inventory-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-lead",
|
|
"projectFolder": "server-plugins/lead",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-lead",
|
|
"projectFolder": "models/server-lead",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-lead-resources",
|
|
"projectFolder": "server-plugins/lead-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-recruit",
|
|
"projectFolder": "server-plugins/recruit",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-recruit",
|
|
"projectFolder": "models/server-recruit",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-recruit-resources",
|
|
"projectFolder": "server-plugins/recruit-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-task",
|
|
"projectFolder": "server-plugins/task",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-task",
|
|
"projectFolder": "models/server-task",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-tracker",
|
|
"projectFolder": "server-plugins/tracker",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-tracker",
|
|
"projectFolder": "models/server-tracker",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-tracker-resources",
|
|
"projectFolder": "server-plugins/tracker-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-task-resources",
|
|
"projectFolder": "server-plugins/task-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-setting",
|
|
"projectFolder": "server-plugins/setting",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-setting",
|
|
"projectFolder": "models/server-setting",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-setting-resources",
|
|
"projectFolder": "server-plugins/setting-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/calendar",
|
|
"projectFolder": "plugins/calendar",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/calendar-assets",
|
|
"projectFolder": "plugins/calendar-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/calendar-resources",
|
|
"projectFolder": "plugins/calendar-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-calendar",
|
|
"projectFolder": "models/calendar",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-tags",
|
|
"projectFolder": "server-plugins/tags",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-tags",
|
|
"projectFolder": "models/server-tags",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-tags-resources",
|
|
"projectFolder": "server-plugins/tags-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-calendar",
|
|
"projectFolder": "server-plugins/calendar",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-calendar",
|
|
"projectFolder": "models/server-calendar",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-calendar-resources",
|
|
"projectFolder": "server-plugins/calendar-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-gmail",
|
|
"projectFolder": "server-plugins/gmail",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-gmail",
|
|
"projectFolder": "models/server-gmail",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-gmail-resources",
|
|
"projectFolder": "server-plugins/gmail-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-telegram",
|
|
"projectFolder": "server-plugins/telegram",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-telegram",
|
|
"projectFolder": "models/server-telegram",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-telegram-resources",
|
|
"projectFolder": "server-plugins/telegram-resources",
|
|
"shouldPublish": true
|
|
},
|
|
|
|
{
|
|
"packageName": "@hcengineering/tracker",
|
|
"projectFolder": "plugins/tracker",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/tracker-assets",
|
|
"projectFolder": "plugins/tracker-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/tracker-resources",
|
|
"projectFolder": "plugins/tracker-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-tracker",
|
|
"projectFolder": "models/tracker",
|
|
"shouldPublish": true
|
|
},
|
|
|
|
{
|
|
"packageName": "@hcengineering/board",
|
|
"projectFolder": "plugins/board",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/board-assets",
|
|
"projectFolder": "plugins/board-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/board-resources",
|
|
"projectFolder": "plugins/board-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-board",
|
|
"projectFolder": "models/board",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/kanban",
|
|
"projectFolder": "packages/kanban",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/preference",
|
|
"projectFolder": "plugins/preference",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/preference-assets",
|
|
"projectFolder": "plugins/preference-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-preference",
|
|
"projectFolder": "models/preference",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-preference",
|
|
"projectFolder": "server-plugins/preference",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/middleware",
|
|
"projectFolder": "server/middleware",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-backup",
|
|
"projectFolder": "server/backup",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/pod-backup",
|
|
"projectFolder": "pods/backup",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/automation",
|
|
"projectFolder": "plugins/automation",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/automation-resources",
|
|
"projectFolder": "plugins/automation-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/automation-assets",
|
|
"projectFolder": "plugins/automation-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-automation",
|
|
"projectFolder": "models/automation",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/hr",
|
|
"projectFolder": "plugins/hr",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/hr-assets",
|
|
"projectFolder": "plugins/hr-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/hr-resources",
|
|
"projectFolder": "plugins/hr-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-hr",
|
|
"projectFolder": "models/hr",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-hr",
|
|
"projectFolder": "server-plugins/hr",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-server-hr",
|
|
"projectFolder": "models/server-hr",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/server-hr-resources",
|
|
"projectFolder": "server-plugins/hr-resources",
|
|
"shouldPublish": true
|
|
},
|
|
|
|
{
|
|
"packageName": "@hcengineering/document",
|
|
"projectFolder": "plugins/document",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/document-assets",
|
|
"projectFolder": "plugins/document-assets",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/document-resources",
|
|
"projectFolder": "plugins/document-resources",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/model-document",
|
|
"projectFolder": "models/document",
|
|
"shouldPublish": true
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/apm",
|
|
"projectFolder": "tools/apm",
|
|
"shouldPublish": false
|
|
},
|
|
{
|
|
"packageName": "@hcengineering/minio",
|
|
"projectFolder": "server/minio",
|
|
"shouldPublish": true
|
|
}
|
|
]
|
|
}
|