forked from hallee9000/juuust-react-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
10ab014
commit 1ebb4a3
Showing
3 changed files
with
79 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* THIS IS A BIT-AUTO-GENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. */ | ||
|
||
/** | ||
* The Bitmap file is an auto generated file used by Bit to track all your Bit components. It maps the component to a folder in your file system. | ||
* This file should be committed to VCS(version control). | ||
* Components are listed using their component ID (https://bit.dev/reference/components/component-id). | ||
* If you want to delete components you can use the "bit remove <component-id>" command. | ||
* See the docs (https://bit.dev/reference/components/removing-components) for more information, or use "bit remove --help". | ||
*/ | ||
|
||
{ | ||
"$schema-version": "17.0.0" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/** | ||
* this is the main configuration file of your bit workspace. | ||
* for full documentation, please see: https://bit.dev/reference/workspace/workspace-json | ||
**/{ | ||
"$schema": "https://static.bit.dev/teambit/schemas/schema.json", | ||
/** | ||
* main configuration of the Bit workspace. | ||
**/ | ||
"teambit.workspace/workspace": { | ||
/** | ||
* the name of the component workspace. used for development purposes. | ||
**/ | ||
"name": "my-workspace-name", | ||
/** | ||
* set the icon to be shown on the Bit server. | ||
**/ | ||
"icon": "https://static.bit.dev/brands/bit-logo-min.png", | ||
/** | ||
* default directory to place a component during `bit import` and `bit create`. | ||
* the following placeholders are available: | ||
* name - component name includes namespace, e.g. 'ui/button'. | ||
* scopeId - full scope-id includes the owner, e.g. 'teambit.compilation'. | ||
* scope - scope name only, e.g. 'compilation'. | ||
* owner - owner name in bit.dev, e.g. 'teambit'. | ||
**/ | ||
"defaultDirectory": "{scope}/{name}", | ||
/** | ||
* default scope for all components in workspace. | ||
**/ | ||
"defaultScope": "my-scope", | ||
"resolveAspectsFromNodeModules": true, | ||
"resolveEnvsFromRoots": true | ||
}, | ||
/** | ||
* Enable generator templates by uncommenting the desired environments below. | ||
* These generators scaffold components for Node, React, Vue, and Angular. | ||
* After uncommenting, run `bit install` to make them available in your workspace. | ||
* Explore more dev environments at: https://bit.dev/docs/getting-started/composing/dev-environments | ||
**/ | ||
"teambit.generator/generator": { | ||
"envs": [ | ||
// "bitdev.node/node-env", | ||
// "bitdev.react/react-env", | ||
// "bitdev.vue/vue-env", | ||
// "bitdev.angular/angular-env" | ||
] | ||
}, | ||
/** | ||
* main configuration for component dependency resolution. | ||
**/ | ||
"teambit.dependencies/dependency-resolver": { | ||
/** | ||
* choose the package manager for Bit to use. you can choose between 'yarn', 'pnpm' | ||
*/ | ||
"packageManager": "teambit.dependencies/pnpm", | ||
"rootComponents": true, | ||
"policy": { | ||
"dependencies": {}, | ||
"peerDependencies": {} | ||
} | ||
}, | ||
"teambit.workspace/workspace-config-files": { | ||
"enableWorkspaceConfigWrite": true | ||
} | ||
} |