Skip to content

Commit

Permalink
adding postcss
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoBestseller committed Sep 10, 2024
1 parent 10ab014 commit 1ebb4a3
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .bitmap
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"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"semver": "^7.6.2",
"nth-check": "^2.0.1",
"yargs-parser": "^13.1.2",
"postcss": "^7.0.36",
"postcss": "^8.4.31",
"axios": "^0.28.0"
},
"publishConfig": {
Expand Down
65 changes: 65 additions & 0 deletions workspace.jsonc
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
}
}

0 comments on commit 1ebb4a3

Please sign in to comment.