-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(project): move to monorepo (#2363)
* chore(project): sync offline mirror * chore(components): move to sub-directory * docs(developing): add initial docs * chore(project): sync top-level files * chore(project): sync moved files * chore(ci): update ci to include node v10 * chore(project): sync offline mirror * chore(ci): name install step * fix(components): ci-check * chore(project): add publish task and docs * chore(project): add sync task * chore(project): run sync command * docs(readme): add back root readme in interim * docs(developing): remove reference to elements * docs(deps): add write-up for dependencies * docs: move components docs up to root level * chore(examples): move example to top-level to prevent codesandbox breakage * docs(readme): update to include license and contributing sections * docs(readme): update build badge to circle * docs(readme): update readme copy * docs(developing): add common tasks docs * chore(project): update editorconfig * chore(components): move files back to docs folder * chore(rollup): update namedExports for dev * chore(ci): add build step to circleci
- Loading branch information
Showing
912 changed files
with
3,117 additions
and
505 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
components: | ||
docker: | ||
- image: circleci/node:8.12-browsers | ||
- image: circleci/node:10.15-browsers | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install yarn | ||
command: curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.15.2 | ||
command: | | ||
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.15.2 | ||
export PATH=$HOME/.yarn/bin:$PATH | ||
- run: | ||
name: Install dependencies | ||
command: PATH=$HOME/.yarn/bin:$PATH yarn install --frozen-lockfile --offline | ||
command: yarn install --offline --frozen-lockfile | ||
- run: | ||
name: Build packages | ||
command: yarn build | ||
- run: | ||
name: Run Continuous Integration checks | ||
command: PATH=$HOME/.yarn/bin:$PATH yarn ci-check | ||
command: yarn lerna run ci-check --scope carbon-components | ||
|
||
workflows: | ||
version: 2 | ||
main: | ||
jobs: | ||
- components |
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,21 +1,16 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# EditorConfig helps developers define and maintain consistent # top-most EditorConfig file | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,44 @@ | ||
# Hide package manager | ||
node_modules | ||
bower_components | ||
.npmrc | ||
|
||
# Ignore built files and static folder | ||
demo/*.css | ||
demo/*.map | ||
demo/*.js | ||
demo/*.html | ||
demo/code | ||
demo/component | ||
demo/hot | ||
!demo/index.js | ||
!demo/components.js | ||
# Build folders | ||
/build | ||
packages/*/examples/*/build/ | ||
es | ||
lib | ||
dist | ||
umd | ||
css | ||
|
||
# OSX | ||
.DS_Store | ||
# Config files | ||
.npmrc | ||
|
||
# Cache folders | ||
.cache | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
||
# Editors | ||
project.sublime-project | ||
project.sublime-workspace | ||
jsconfig.json | ||
.vscode | ||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Certificates | ||
*.crt | ||
*.pem | ||
|
||
# Editor | ||
.DS_Store | ||
*.swp | ||
.idea | ||
.vscode | ||
|
||
# Coverage directory used by tools like istanbul, also includes default junit | ||
# output file | ||
coverage | ||
/junit.xml | ||
|
||
# Test reports | ||
tests/a11y-results | ||
tests/coverage | ||
|
||
# built files | ||
/es | ||
/umd | ||
/scripts | ||
/css/** | ||
/scss | ||
/html | ||
/docs/js | ||
|
||
# a11y testing | ||
.aat.yml | ||
# Dependency directory | ||
node_modules | ||
|
||
# Generated by npm@5, but project currently uses Yarn | ||
package-lock.json |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
10 |
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,21 +1,28 @@ | ||
demo/*.css | ||
demo/*.map | ||
demo/*.js | ||
demo/js/prism.js | ||
demo/scss/_prism.scss | ||
demo/hot | ||
!demo/index.js | ||
build | ||
dist | ||
docs/api/sass.md | ||
examples/codesandbox | ||
src/globals/fonts/LICENSE.md | ||
tests/a11y-results | ||
tests/coverage | ||
/es | ||
/umd | ||
/scripts | ||
/css | ||
/scss | ||
/html | ||
/docs/js | ||
es | ||
html | ||
lib | ||
node_modules | ||
ts | ||
umd | ||
|
||
# Components | ||
packages/components/demo/*.css | ||
packages/components/demo/*.map | ||
packages/components/demo/*.js | ||
packages/components/demo/js/prism.js | ||
packages/components/demo/scss/_prism.scss | ||
packages/components/demo/hot | ||
!packages/components/demo/index.js | ||
|
||
packages/components/docs/api/sass.md | ||
packages/components/examples/codesandbox | ||
packages/components/src/globals/fonts/LICENSE.md | ||
packages/components/tests/a11y-results | ||
packages/components/tests/coverage | ||
|
||
packages/components/scripts | ||
packages/components/css | ||
packages/components/scss | ||
packages/components/docs/js |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,2 +1,3 @@ | ||
yarn-offline-mirror "./.yarn-offline-mirror" | ||
yarn-offline-mirror-pruning true | ||
--install.frozen-lockfile true |
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
Oops, something went wrong.