@teambit/workspace 1.0.648 → 1.0.649
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.649/dist/workspace.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.649/dist/workspace.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
package/dist/types.d.ts
CHANGED
|
@@ -66,5 +66,14 @@ export interface WorkspaceExtConfig {
|
|
|
66
66
|
* when set to true, bit will try to load MyDepAspect automatically.
|
|
67
67
|
*/
|
|
68
68
|
autoLoadAspectsDeps?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* If set to `true`, enables external package manager mode. When enabled:
|
|
71
|
+
* - `bit install` will not install dependencies and will prompt the user to use their package manager.
|
|
72
|
+
* - Other commands that trigger installation (e.g., `bit import`, `bit checkout`) will skip the installation and print a warning.
|
|
73
|
+
* When this prop is set by bit to `true`, the following properties are automatically set to `false`:
|
|
74
|
+
* - `rootComponent`.
|
|
75
|
+
* - `enableWorkspaceConfigWrite`.
|
|
76
|
+
*/
|
|
77
|
+
externalPackageManager?: boolean;
|
|
69
78
|
}
|
|
70
79
|
export {};
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["interface VendorConfig {\n directory: string;\n}\n\nexport interface WorkspaceExtConfig {\n /**\n * name of the workspace.\n */\n name: string;\n\n /**\n * path to icon.\n */\n icon: string;\n\n /**\n * set the default scope when there is no matching for the component in the components array.\n */\n defaultScope: string;\n\n /**\n * set the default directory when there is no matching for the component in the components array.\n */\n defaultDirectory: string;\n\n /**\n * sets the location of the root components directory.\n * The location is a relative path to the workspace root and should use linux path separators (/).\n */\n rootComponentsDirectory?: string;\n\n /**\n * set the default structure of components in your project\n */\n vendor: VendorConfig;\n\n /**\n * All component extensions applied by default on all components in the workspace (except vendor components)\n */\n extensions: { [extensionsId: string]: string };\n\n /**\n * If set to\n * `true`, it allows the workspace to resolve scope's aspects from node modules\n * installed in the workspace's `node_modules` directory. If not set or set to `false`, aspects will only be resolved\n * from the scope aspects capsule.\n */\n resolveAspectsFromNodeModules?: boolean;\n\n /**\n * If set to `true`, it allows the workspace to resolve envs from node modules\n * installed in the workspace's `node_modules` directory.\n * the envs will be resolved from the node_modules of the env's root (workspace/node_modules/.bit_roots/{envId})\n * and if not found (usually when the env was hoisted to the root node_modules) then from the node_modules of the\n * workspace.\n * If not set or set to `false`, envs will only be resolved from the scope envs capsule.\n */\n resolveEnvsFromRoots?: boolean;\n\n /**\n * If set to `true`, bit will try to load aspects dependencies automatically.\n * even if the aspects dependencies are not configured in the workspace.jsonc root config.\n * for example having the aspect\n * main aspect\n * export class MainAspectMain {\n * ...\n * static dependencies = [MyDepAspect];\n * }\n * and the in the workspace.jsonc file:\n * {\n * ...\n * main-aspect: {}\n * }\n * when set to true, bit will try to load MyDepAspect automatically.\n */\n autoLoadAspectsDeps?: boolean;\n}\n"],"mappings":"","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["interface VendorConfig {\n directory: string;\n}\n\nexport interface WorkspaceExtConfig {\n /**\n * name of the workspace.\n */\n name: string;\n\n /**\n * path to icon.\n */\n icon: string;\n\n /**\n * set the default scope when there is no matching for the component in the components array.\n */\n defaultScope: string;\n\n /**\n * set the default directory when there is no matching for the component in the components array.\n */\n defaultDirectory: string;\n\n /**\n * sets the location of the root components directory.\n * The location is a relative path to the workspace root and should use linux path separators (/).\n */\n rootComponentsDirectory?: string;\n\n /**\n * set the default structure of components in your project\n */\n vendor: VendorConfig;\n\n /**\n * All component extensions applied by default on all components in the workspace (except vendor components)\n */\n extensions: { [extensionsId: string]: string };\n\n /**\n * If set to\n * `true`, it allows the workspace to resolve scope's aspects from node modules\n * installed in the workspace's `node_modules` directory. If not set or set to `false`, aspects will only be resolved\n * from the scope aspects capsule.\n */\n resolveAspectsFromNodeModules?: boolean;\n\n /**\n * If set to `true`, it allows the workspace to resolve envs from node modules\n * installed in the workspace's `node_modules` directory.\n * the envs will be resolved from the node_modules of the env's root (workspace/node_modules/.bit_roots/{envId})\n * and if not found (usually when the env was hoisted to the root node_modules) then from the node_modules of the\n * workspace.\n * If not set or set to `false`, envs will only be resolved from the scope envs capsule.\n */\n resolveEnvsFromRoots?: boolean;\n\n /**\n * If set to `true`, bit will try to load aspects dependencies automatically.\n * even if the aspects dependencies are not configured in the workspace.jsonc root config.\n * for example having the aspect\n * main aspect\n * export class MainAspectMain {\n * ...\n * static dependencies = [MyDepAspect];\n * }\n * and the in the workspace.jsonc file:\n * {\n * ...\n * main-aspect: {}\n * }\n * when set to true, bit will try to load MyDepAspect automatically.\n */\n autoLoadAspectsDeps?: boolean;\n\n /**\n * If set to `true`, enables external package manager mode. When enabled:\n * - `bit install` will not install dependencies and will prompt the user to use their package manager.\n * - Other commands that trigger installation (e.g., `bit import`, `bit checkout`) will skip the installation and print a warning.\n * When this prop is set by bit to `true`, the following properties are automatically set to `false`:\n * - `rootComponent`.\n * - `enableWorkspaceConfigWrite`.\n */\n externalPackageManager?: boolean;\n}\n"],"mappings":"","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/workspace",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.649",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/workspace/workspace",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.workspace",
|
|
8
8
|
"name": "workspace",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.649"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"lodash": "4.17.21",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"@teambit/explorer.ui.gallery.component-grid": "0.0.496",
|
|
53
53
|
"@teambit/scopes.scope-id": "0.0.7",
|
|
54
54
|
"@teambit/workspace.ui.empty-workspace": "0.0.509",
|
|
55
|
-
"@teambit/component": "1.0.
|
|
56
|
-
"@teambit/dependency-resolver": "1.0.
|
|
57
|
-
"@teambit/envs": "1.0.
|
|
55
|
+
"@teambit/component": "1.0.649",
|
|
56
|
+
"@teambit/dependency-resolver": "1.0.649",
|
|
57
|
+
"@teambit/envs": "1.0.649",
|
|
58
58
|
"@teambit/legacy.extension-data": "0.0.56",
|
|
59
59
|
"@teambit/legacy.scope": "0.0.54",
|
|
60
60
|
"@teambit/legacy.consumer-component": "0.0.55",
|
|
@@ -62,29 +62,29 @@
|
|
|
62
62
|
"@teambit/legacy.bit-map": "0.0.111",
|
|
63
63
|
"@teambit/toolbox.fs.last-modified": "0.0.5",
|
|
64
64
|
"@teambit/toolbox.path.path": "0.0.8",
|
|
65
|
-
"@teambit/logger": "0.0.
|
|
66
|
-
"@teambit/objects": "0.0.
|
|
67
|
-
"@teambit/scope": "1.0.
|
|
68
|
-
"@teambit/graph": "1.0.
|
|
69
|
-
"@teambit/cli": "0.0.
|
|
70
|
-
"@teambit/isolator": "1.0.
|
|
71
|
-
"@teambit/component-tree": "1.0.
|
|
65
|
+
"@teambit/logger": "0.0.1319",
|
|
66
|
+
"@teambit/objects": "0.0.156",
|
|
67
|
+
"@teambit/scope": "1.0.649",
|
|
68
|
+
"@teambit/graph": "1.0.649",
|
|
69
|
+
"@teambit/cli": "0.0.1226",
|
|
70
|
+
"@teambit/isolator": "1.0.649",
|
|
71
|
+
"@teambit/component-tree": "1.0.649",
|
|
72
72
|
"@teambit/legacy.constants": "0.0.12",
|
|
73
73
|
"@teambit/harmony.modules.resolved-component": "0.0.502",
|
|
74
74
|
"@teambit/legacy.utils": "0.0.21",
|
|
75
|
-
"@teambit/watcher": "1.0.
|
|
76
|
-
"@teambit/aspect-loader": "1.0.
|
|
77
|
-
"@teambit/config-store": "0.0.
|
|
78
|
-
"@teambit/config": "0.0.
|
|
75
|
+
"@teambit/watcher": "1.0.649",
|
|
76
|
+
"@teambit/aspect-loader": "1.0.649",
|
|
77
|
+
"@teambit/config-store": "0.0.106",
|
|
78
|
+
"@teambit/config": "0.0.1400",
|
|
79
79
|
"@teambit/harmony.modules.requireable-component": "0.0.502",
|
|
80
80
|
"@teambit/toolbox.modules.module-resolver": "0.0.11",
|
|
81
81
|
"@teambit/workspace.modules.node-modules-linker": "0.0.282",
|
|
82
|
-
"@teambit/graphql": "1.0.
|
|
83
|
-
"@teambit/bundler": "1.0.
|
|
84
|
-
"@teambit/global-config": "0.0.
|
|
82
|
+
"@teambit/graphql": "1.0.649",
|
|
83
|
+
"@teambit/bundler": "1.0.649",
|
|
84
|
+
"@teambit/global-config": "0.0.1229",
|
|
85
85
|
"@teambit/legacy.consumer-config": "0.0.54",
|
|
86
|
-
"@teambit/ui": "1.0.
|
|
87
|
-
"@teambit/variants": "0.0.
|
|
86
|
+
"@teambit/ui": "1.0.649",
|
|
87
|
+
"@teambit/variants": "0.0.1493",
|
|
88
88
|
"@teambit/component-issues": "0.0.159",
|
|
89
89
|
"@teambit/component.sources": "0.0.106",
|
|
90
90
|
"@teambit/harmony.modules.in-memory-cache": "0.0.14",
|
|
@@ -98,19 +98,19 @@
|
|
|
98
98
|
"@teambit/lanes.hooks.use-lanes": "0.0.289",
|
|
99
99
|
"@teambit/lanes.ui.models.lanes-model": "0.0.228",
|
|
100
100
|
"@teambit/ui-foundation.ui.side-bar": "0.0.910",
|
|
101
|
-
"@teambit/command-bar": "1.0.
|
|
101
|
+
"@teambit/command-bar": "1.0.649",
|
|
102
102
|
"@teambit/component.ui.component-filters.component-filter-context": "0.0.238",
|
|
103
103
|
"@teambit/component.ui.component-filters.deprecate-filter": "0.0.236",
|
|
104
104
|
"@teambit/component.ui.component-filters.env-filter": "0.0.253",
|
|
105
105
|
"@teambit/component.ui.component-filters.show-main-filter": "0.0.229",
|
|
106
|
-
"@teambit/sidebar": "1.0.
|
|
106
|
+
"@teambit/sidebar": "1.0.649",
|
|
107
107
|
"@teambit/ui-foundation.ui.react-router.slot-router": "0.0.516",
|
|
108
|
-
"@teambit/pubsub": "1.0.
|
|
108
|
+
"@teambit/pubsub": "1.0.649",
|
|
109
109
|
"@teambit/harmony.modules.concurrency": "0.0.13",
|
|
110
110
|
"@teambit/toolbox.promise.map-pool": "0.0.6",
|
|
111
111
|
"@teambit/workspace.ui.use-workspace-mode": "0.0.2",
|
|
112
112
|
"@teambit/component-descriptor": "0.0.435",
|
|
113
|
-
"@teambit/deprecation": "1.0.
|
|
113
|
+
"@teambit/deprecation": "1.0.649",
|
|
114
114
|
"@teambit/ui-foundation.ui.buttons.collapser": "0.0.228",
|
|
115
115
|
"@teambit/workspace.ui.preserve-workspace-mode": "0.0.2",
|
|
116
116
|
"@teambit/cloud.hooks.use-cloud-scopes": "0.0.8",
|