Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(project): move to monorepo #2363

Merged
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
3917d39
chore(project): sync offline mirror
joshblack Apr 30, 2019
484c27a
chore(components): move to sub-directory
joshblack Apr 30, 2019
5156e01
docs(developing): add initial docs
joshblack Apr 30, 2019
8ef3692
chore(project): sync top-level files
joshblack Apr 30, 2019
dc50b87
chore(project): sync moved files
joshblack Apr 30, 2019
32cbd1e
chore(ci): update ci to include node v10
joshblack Apr 30, 2019
f1e0fb2
chore(project): sync offline mirror
joshblack Apr 30, 2019
e3d6555
chore(ci): name install step
joshblack Apr 30, 2019
643d522
fix(components): ci-check
joshblack Apr 30, 2019
674931a
chore(project): add publish task and docs
joshblack Apr 30, 2019
2020fa8
chore(project): add sync task
joshblack Apr 30, 2019
34f4ab3
chore(project): run sync command
joshblack Apr 30, 2019
094e1cb
docs(readme): add back root readme in interim
joshblack Apr 30, 2019
5c2b382
Merge branch 'master' of github.com:carbon-design-system/carbon-compo…
joshblack Apr 30, 2019
3695e27
docs(developing): remove reference to elements
joshblack Apr 30, 2019
beefddb
docs(deps): add write-up for dependencies
joshblack Apr 30, 2019
23a2ec6
docs: move components docs up to root level
joshblack Apr 30, 2019
7d99300
chore(examples): move example to top-level to prevent codesandbox bre…
joshblack Apr 30, 2019
cbd934e
docs(readme): update to include license and contributing sections
joshblack Apr 30, 2019
9c88012
docs(readme): update build badge to circle
joshblack Apr 30, 2019
42c9710
docs(readme): update readme copy
joshblack Apr 30, 2019
be213d4
docs(developing): add common tasks docs
joshblack Apr 30, 2019
8b30d26
chore(project): update editorconfig
joshblack Apr 30, 2019
07dda52
chore(components): move files back to docs folder
joshblack May 1, 2019
93d8ac2
Merge branch 'master' of github.com:carbon-design-system/carbon-compo…
joshblack May 1, 2019
f9c1a2a
chore(rollup): update namedExports for dev
joshblack May 1, 2019
027f97b
Merge branch 'master' of github.com:carbon-design-system/carbon-compo…
joshblack May 2, 2019
3d2f209
Merge branch 'master' of github.com:carbon-design-system/carbon-compo…
joshblack May 2, 2019
2a7083e
chore(ci): add build step to circleci
joshblack May 2, 2019
f8d21fc
Merge branch 'master' of github.com:carbon-design-system/carbon-compo…
joshblack May 2, 2019
fdc1e05
Merge branch 'master' of github.com:carbon-design-system/carbon-compo…
joshblack May 3, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
18 changes: 13 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
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: 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
17 changes: 6 additions & 11 deletions .editorconfig
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
70 changes: 33 additions & 37 deletions .gitignore
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
5 changes: 0 additions & 5 deletions .htmlhintrc

This file was deleted.

1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10
45 changes: 26 additions & 19 deletions .prettierignore
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 added .yarn-offline-mirror/@lerna-add-3.13.3.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-bootstrap-3.13.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-changed-3.13.4.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-clean-3.13.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-cli-3.13.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-command-3.13.3.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-create-3.13.3.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-diff-3.13.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-exec-3.13.3.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-get-packed-3.13.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-import-3.13.4.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-init-3.13.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-link-3.13.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-list-3.13.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-listable-3.13.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-log-packed-3.13.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-npm-conf-3.13.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-output-3.13.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-package-3.13.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-project-3.13.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-prompt-3.13.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-publish-3.13.4.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-rimraf-dir-3.13.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-run-3.13.3.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-timer-3.13.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@lerna-version-3.13.4.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@octokit-endpoint-4.2.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/@octokit-request-3.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/@octokit-rest-16.25.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/agent-base-4.2.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/agentkeepalive-3.5.2.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/ansi-escapes-3.2.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/ansi-regex-4.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/aproba-2.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/array-differ-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/atob-lite-2.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/babel-core-6.26.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/babel-helpers-6.24.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/babel-register-6.26.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/bail-1.0.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/before-after-hook-1.4.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/bluebird-3.5.4.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/boundary-1.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/btoa-lite-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/builtins-1.0.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/byline-5.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/byte-size-4.0.4.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/cacache-11.3.2.tgz
Binary file not shown.
Binary file removed .yarn-offline-mirror/callsites-3.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/callsites-3.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/character-entities-1.2.2.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/cmd-shim-2.0.2.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/commander-2.20.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/concat-stream-2.0.0.tgz
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 removed .yarn-offline-mirror/cosmiconfig-5.0.7.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/dateformat-3.0.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/deepmerge-3.2.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/deprecation-1.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/detect-indent-5.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/dezalgo-1.0.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/dir-glob-2.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/doctoc-1.4.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/emoji-regex-6.1.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/encoding-0.1.12.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/err-code-1.1.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/es6-promise-4.2.6.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/es6-promisify-5.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/fault-1.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/format-0.2.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/genfun-5.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/get-pkg-repo-1.4.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/get-port-3.2.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/get-stdin-7.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/git-raw-commits-2.0.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/git-semver-tags-2.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/git-up-4.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/git-url-parse-11.1.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/gitconfiglocal-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/globby-8.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/handlebars-4.1.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/home-or-tmp-2.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/htmlparser2-3.9.2.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/http-proxy-agent-2.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/https-proxy-agent-2.2.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/humanize-ms-1.2.1.tgz
Binary file not shown.
Binary file removed .yarn-offline-mirror/husky-1.3.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/husky-2.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/init-package-json-1.10.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/inquirer-6.3.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/invert-kv-2.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/ip-1.1.5.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/is-alphabetical-1.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/is-alphanumerical-1.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/is-decimal-1.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/is-hexadecimal-1.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/is-ssh-1.3.1.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/is-word-character-1.0.2.tgz
Binary file not shown.
Binary file removed .yarn-offline-mirror/js-yaml-3.13.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/js-yaml-3.13.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/lcid-2.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/lerna-3.13.4.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/libnpmaccess-3.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/libnpmpublish-1.1.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/lodash.get-4.4.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/lodash.ismatch-4.4.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/lodash.set-4.3.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/lru-cache-5.1.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/macos-release-2.2.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/make-fetch-happen-4.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/map-age-cleaner-0.1.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/markdown-escapes-1.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/mem-4.3.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/mimic-fn-2.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/modify-values-1.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/multimatch-2.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/mute-stream-0.0.8.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/node-fetch-2.4.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/node-fetch-npm-2.0.2.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/normalize-url-3.3.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/npm-lifecycle-2.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/npm-package-arg-6.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/npm-packlist-1.4.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/npm-pick-manifest-2.2.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/npm-registry-fetch-3.9.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/os-locale-3.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/os-name-3.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/p-defer-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/p-is-promise-2.1.0.tgz
Binary file not shown.
Binary file removed .yarn-offline-mirror/p-map-2.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/p-map-2.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/p-map-series-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/p-pipe-1.2.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/p-reduce-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/p-waterfall-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/pacote-9.5.0.tgz
Binary file not shown.
Binary file removed .yarn-offline-mirror/parent-module-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/parent-module-1.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/parse-entities-1.2.1.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/parse-path-4.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/parse-url-5.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/pkg-dir-4.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/promise-retry-1.1.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/promzard-0.3.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/protocols-1.4.7.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/protoduck-5.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/read-1.0.7.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/read-cmd-shim-1.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/read-package-json-2.0.13.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/read-package-tree-5.2.2.tgz
Binary file not shown.
Binary file removed .yarn-offline-mirror/read-pkg-4.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/read-pkg-5.1.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/readable-stream-3.3.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/remark-frontmatter-1.3.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/remark-parse-5.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/resolve-1.10.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/retry-0.10.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/rimraf-2.6.3.tgz
Binary file not shown.
Binary file removed .yarn-offline-mirror/rxjs-6.3.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/rxjs-6.5.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/semver-5.7.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/smart-buffer-4.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/socks-2.3.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/socks-proxy-agent-4.0.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/sort-keys-2.0.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/split-1.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/state-toggle-1.0.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/strip-ansi-5.2.0.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/structured-source-3.0.2.tgz
Binary file not shown.
Binary file removed .yarn-offline-mirror/synchronous-promise-2.0.6.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/temp-dir-1.0.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/temp-write-3.4.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/traverse-0.6.6.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/trim-0.0.1.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/trough-1.0.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/type-fest-0.4.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/uid-number-0.0.6.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/umask-1.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/unherit-1.1.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/unified-6.2.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/unist-util-is-2.1.2.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/unist-util-visit-1.4.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/update-section-0.3.3.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/url-template-2.0.8.tgz
Binary file not shown.
Binary file not shown.
Binary file added .yarn-offline-mirror/vfile-2.3.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/vfile-location-2.0.4.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/vfile-message-1.1.1.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/windows-release-3.2.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/write-file-atomic-2.4.2.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/write-json-file-2.3.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/write-pkg-3.2.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/x-is-string-0.1.0.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/yargs-12.0.5.tgz
Binary file not shown.
Binary file added .yarn-offline-mirror/yargs-parser-11.1.1.tgz
Binary file not shown.
1 change: 1 addition & 0 deletions .yarnrc
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
33 changes: 13 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# carbon-components

[![Carbon Components is released under the Apache-2.0 license](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](./LICENSE)
[![Build Status](https://travis-ci.org/IBM/carbon-components.svg?branch=master)](https://travis-ci.org/IBM/carbon-components)
[![Build Status](https://circleci.com/gh/carbon-design-system/carbon-components.svg?style=shield)](https://circleci.com/gh/carbon-design-system/carbon-component)
[![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lernajs.io/)
[![PRs welcome!](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](./.github/CONTRIBUTING.md)

The Carbon Design System is a series of individual styles and components, that when combined make beautiful, intuitive designs. These designs are systemic and logical, as they all follow the same universal principles.

The component library gives developers a collection of re-usable HTML and SCSS partials for building their products.
> The Carbon Design System is a series of individual styles and components, that
> when combined make beautiful, intuitive designs. These designs are systemic and
> logical, as they all follow the same universal principles.

## Getting started

Expand All @@ -30,28 +31,20 @@ If you just want to try out `carbon-components`, you can also use [CodeSandbox](

(**Important note**: `src` directory in the package has been deprecated and subject to breaking changes. Please use `es`/`umd`/`scss` directories instead)

# :books: Documentation
## :books: Documentation

- See our documentation site [here](http://carbondesignsystem.com/getting-started/developers) for full how-to docs and guidelines
- [Contributing](/.github/CONTRIBUTING.md): Guidelines for making contributions to this repo.
- [🏃‍♀️ Migration Guides](./docs/migration)
- [v9 to v10](./docs/migration/migrate-to-10.x.md)

## Contributors

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore -->
| [<img src="https://avatars3.githubusercontent.com/u/4185382?v=4" width="100px;"/><br /><sub><b>Brian Han</b></sub>](https://github.com/hellobrian)<br />[💻](https://github.com/IBM/carbon-components/commits?author=hellobrian "Code") [📖](https://github.com/IBM/carbon-components/commits?author=hellobrian "Documentation") [👀](#review-hellobrian "Reviewed Pull Requests") [✅](#tutorial-hellobrian "Tutorials") | [<img src="https://avatars1.githubusercontent.com/u/11928039?v=4" width="100px;"/><br /><sub><b>TJ Egan</b></sub>](http://tjegan.com/)<br />[💻](https://github.com/IBM/carbon-components/commits?author=tw15egan "Code") [📖](https://github.com/IBM/carbon-components/commits?author=tw15egan "Documentation") [👀](#review-tw15egan "Reviewed Pull Requests") [✅](#tutorial-tw15egan "Tutorials") | [<img src="https://avatars0.githubusercontent.com/u/5447411?v=4" width="100px;"/><br /><sub><b>Mari Johannessen</b></sub>](http://www.marijohannessen.com)<br />[💻](https://github.com/IBM/carbon-components/commits?author=marijohannessen "Code") [📖](https://github.com/IBM/carbon-components/commits?author=marijohannessen "Documentation") [👀](#review-marijohannessen "Reviewed Pull Requests") [✅](#tutorial-marijohannessen "Tutorials") | [<img src="https://avatars2.githubusercontent.com/u/2753488?s=400&v=4" width="100px;"/><br /><sub><b>Alison Joseph</b></sub>](https://github.com/alisonjoseph)<br />[💻](https://github.com/IBM/carbon-components/commits?author=alisonjoseph "Code") [📖](https://github.com/IBM/carbon-components/commits?author=alisonjoseph "Documentation") [👀](#review-alisonjoseph "Reviewed Pull Requests") [✅](#tutorial-alisonjoseph "Tutorials") | [<img src="https://avatars3.githubusercontent.com/u/3901764?s=400&v=4" width="100px;"/><br /><sub><b>Josh Black</b></sub>](https://github.com/joshblack)<br />[💻](https://github.com/IBM/carbon-components/commits?author=joshblack "Code") [📖](https://github.com/IBM/carbon-components/commits?author=joshblack "Documentation") [👀](#review-joshblack "Reviewed Pull Requests") [✅](#tutorial-joshblack "Tutorials") | [<img src="https://avatars2.githubusercontent.com/u/12533409?s=460&v=4" width="100px;"/><br /><sub><b>Alessandra Davila</b></sub>](https://github.com/aledavila)<br />[💻](https://github.com/IBM/carbon-components/commits?author=aledavila "Code") [📖](https://github.com/IBM/carbon-components/commits?author=aledavila "Documentation") [👀](#review-aledavila "Reviewed Pull Requests") [✅](#tutorial-aledavila "Tutorials") | [<img src="https://avatars2.githubusercontent.com/u/1266014?v=4" width="100px;"/><br /><sub><b>Chris Dhanaraj</b></sub>](http://twitter.com/chrisdhanaraj)<br />[💻](https://github.com/IBM/carbon-components/commits?author=chrisdhanaraj "Code") [📖](https://github.com/IBM/carbon-components/commits?author=chrisdhanaraj "Documentation") [👀](#review-chrisdhanaraj "Reviewed Pull Requests") [✅](#tutorial-chrisdhanaraj "Tutorials") [🔧](#tool-chrisdhanaraj "Tools") |
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
| [<img src="https://avatars2.githubusercontent.com/u/5481782?v=4" width="100px;"/><br /><sub><b>Ian Fleming</b></sub>](http://ianfleming.me/)<br />[💻](https://github.com/IBM/carbon-components/commits?author=iangfleming "Code") [📖](https://github.com/IBM/carbon-components/commits?author=iangfleming "Documentation") [👀](#review-iangfleming "Reviewed Pull Requests") [✅](#tutorial-iangfleming "Tutorials") | [<img src="https://avatars3.githubusercontent.com/u/11670886?v=4" width="100px;"/><br /><sub><b>Anna Gonzales</b></sub>](https://github.com/aagonzales)<br />[🎨](#design-aagonzales "Design") [📖](https://github.com/IBM/carbon-components/commits?author=aagonzales "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/29312997?v=4" width="100px;"/><br /><sub><b>Tayler Aitken</b></sub>](https://github.com/tay-aitken)<br />[🎨](#design-tay-aitken "Design") [📖](https://github.com/IBM/carbon-components/commits?author=tay-aitken "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/11233508?v=4" width="100px;"/><br /><sub><b>Bethany Sonefeld</b></sub>](http://www.bethanysonefeld.com)<br />[🎨](#design-bsonefeld "Design") [📝](#blog-bsonefeld "Blogposts") [📖](https://github.com/IBM/carbon-components/commits?author=bsonefeld "Documentation") | [<img src="https://avatars2.githubusercontent.com/u/25189046?v=4" width="100px;"/><br /><sub><b>tsaitsaitsai</b></sub>](https://github.com/tsaitsaitsai)<br />[🎨](#design-tsaitsaitsai "Design") [📖](https://github.com/IBM/carbon-components/commits?author=tsaitsaitsai "Documentation") | [<img src="https://avatars1.githubusercontent.com/u/1259051?v=4" width="100px;"/><br /><sub><b>Akira Sudoh</b></sub>](http://streetphoto.jp/)<br />[💻](https://github.com/IBM/carbon-components/commits?author=asudoh "Code") [👀](#review-asudoh "Reviewed Pull Requests") [🔧](#tool-asudoh "Tools") | [<img src="https://avatars1.githubusercontent.com/u/1693164?v=4" width="100px;"/><br /><sub><b>Una Kravets</b></sub>](http://una.im)<br />[💻](https://github.com/IBM/carbon-components/commits?author=una "Code") |
| [<img src="https://avatars2.githubusercontent.com/u/6686963?v=4" width="100px;"/><br /><sub><b>Jefferson Lam</b></sub>](http://jefferson.im)<br />[💻](https://github.com/IBM/carbon-components/commits?author=jeffersonlam "Code") | [<img src="https://avatars3.githubusercontent.com/u/9454408?v=4" width="100px;"/><br /><sub><b>Dan Zaharia</b></sub>](http://www.danzaharia.com)<br />[💻](https://github.com/IBM/carbon-components/commits?author=dzaharia1 "Code") | [<img src="https://avatars3.githubusercontent.com/u/6444889?v=4" width="100px;"/><br /><sub><b>Bobby Smith</b></sub>](http://bobbysmith.io)<br />[💻](https://github.com/IBM/carbon-components/commits?author=bobbysmith "Code") | [<img src="https://avatars0.githubusercontent.com/u/870668?v=4" width="100px;"/><br /><sub><b>Lee Reamsnyder</b></sub>](http://leereamsnyder.com)<br />[💻](https://github.com/IBM/carbon-components/commits?author=leereamsnyder "Code") | [<img src="https://avatars0.githubusercontent.com/u/181819?v=4" width="100px;"/><br /><sub><b>Nick Sandonato</b></sub>](https://github.com/nsand)<br />[💻](https://github.com/IBM/carbon-components/commits?author=nsand "Code") | [<img src="https://avatars1.githubusercontent.com/u/825457?v=4" width="100px;"/><br /><sub><b>Robin Cannon</b></sub>](http://shinytoyrobots.com)<br />[📖](https://github.com/IBM/carbon-components/commits?author=shinytoyrobots "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/1265379?v=4" width="100px;"/><br /><sub><b>Preston Pham</b></sub>](http://preston.io)<br />[💻](https://github.com/IBM/carbon-components/commits?author=prestonp "Code") |
| [<img src="https://avatars0.githubusercontent.com/u/8884298?v=4" width="100px;"/><br /><sub><b>Colby Williams</b></sub>](http://www.colbycheeze.com)<br />[💻](https://github.com/IBM/carbon-components/commits?author=colbycheeze "Code") | [<img src="https://avatars2.githubusercontent.com/u/7519029?v=4" width="100px;"/><br /><sub><b>James Y Rauhut</b></sub>](http://www.seejamescode.com)<br />[📖](https://github.com/IBM/carbon-components/commits?author=seejamescode "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/6788995?v=4" width="100px;"/><br /><sub><b>Chris Johnson</b></sub>](https://github.com/jhnsnc)<br />[💻](https://github.com/IBM/carbon-components/commits?author=jhnsnc "Code") | [<img src="https://avatars3.githubusercontent.com/u/114976?v=4" width="100px;"/><br /><sub><b>Nathan Friedly</b></sub>](http://nfriedly.com/)<br />[💻](https://github.com/IBM/carbon-components/commits?author=nfriedly "Code") | [<img src="https://avatars1.githubusercontent.com/u/13006634?v=4" width="100px;"/><br /><sub><b>asahlin</b></sub>](https://github.com/asahlin)<br />[💻](https://github.com/IBM/carbon-components/commits?author=asahlin "Code") | [<img src="https://avatars0.githubusercontent.com/u/10215203?v=4" width="100px;"/><br /><sub><b>Matthew Gallo</b></sub>](http://www.matthewdgallo.com)<br />[📖](https://github.com/IBM/carbon-components/commits?author=matthewgallo "Documentation") | [<img src="https://avatars3.githubusercontent.com/u/4438261?v=4" width="100px;"/><br /><sub><b>Reinaldo Cruz</b></sub>](http://www.reicruz.com/)<br />[💻](https://github.com/IBM/carbon-components/commits?author=reicruz "Code") |
| [<img src="https://avatars3.githubusercontent.com/u/2699599?v=4" width="100px;"/><br /><sub><b>Bethany Schwanke</b></sub>](https://github.com/bschwanke)<br />[📖](https://github.com/IBM/carbon-components/commits?author=bschwanke "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/6370760?s=460&v=4" width="100px;"/><br /><sub><b>David Menendez</b></sub>](https://github.com/davidmenendez)<br />[💻](https://github.com/IBM/carbon-components/commits?author=davidmenendez "Code") | [<img src="https://avatars1.githubusercontent.com/u/1183515?s=400&v=4" width="100px;"/><br /><sub><b>Derick Montague</b></sub>](https://github.com/derick-montague)<br />[💻](https://github.com/IBM/carbon-components/commits?author=derick-montague "Code") | [<img src="https://avatars2.githubusercontent.com/u/940113?s=400&v=4" width="100px;"/><br /><sub><b>Michael Vendivel</b></sub>](https://github.com/mven)<br />[💻](https://github.com/IBM/carbon-components/commits?author=mven "Code") | [<img src="https://avatars0.githubusercontent.com/u/20052710?s=400&v=4" width="100px;"/><br /><sub><b>James Clements</b></sub>](https://github.com/jamesvclements)<br />[💻](https://github.com/IBM/carbon-components/commits?author=jamesvclements "Code") | [<img src="https://avatars3.githubusercontent.com/u/163561?s=400&v=4" width="100px;"/><br /><sub><b>Jason Lengstorf</b></sub>](https://github.com/jlengstorf)<br />[💻](https://github.com/IBM/carbon-components/commits?author=jlengstorf "Code") | [<img src="https://avatars2.githubusercontent.com/u/2932484?s=400&v=4" width="100px;"/><br /><sub><b>Rahul Radhakrishnan</b></sub>](https://github.com/rahulrkr08)<br />[💻](https://github.com/IBM/carbon-components/commits?author=rahulrkr08 "Code") [📖](https://github.com/IBM/carbon-components/commits?author=rahulrkr08 "Documentation") |
| [<img src="https://avatars2.githubusercontent.com/u/11317322?s=400&v=4" width="100px;"/><br /><sub><b>Adriana Rios</b></sub>](https://github.com/stpCollabr8nLstn)<br />[💻](https://github.com/IBM/carbon-components/commits?author=stpCollabr8nLstn "Code") | [<img src="https://avatars1.githubusercontent.com/u/15326526?s=400&v=4" width="100px;"/><br /><sub><b>Chris de Almeida</b></sub>](https://github.com/ctcpip)<br />[💻](https://github.com/IBM/carbon-components/commits?author=ctcpip "Code") | [<img src="https://avatars2.githubusercontent.com/u/11449728?s=400&v=4" width="100px;"/><br /><sub><b>Paul Sachs</b></sub>](https://github.com/psachs21)<br />[💻](https://github.com/IBM/carbon-components/commits?author=psachs21 "Code") | [<img src="https://avatars1.githubusercontent.com/u/17710824?s=400&v=4" width="100px;"/><br /><sub><b>Ryan Mackey</b></sub>](https://github.com/ryanomackey)<br />[💻](https://github.com/IBM/carbon-components/commits?author=ryanomackey "Code") | [<img src="https://avatars3.githubusercontent.com/u/5316797?s=400&v=4" width="100px;"/><br /><sub><b>Sae</b></sub>](https://github.com/srlim)<br />[💻](https://github.com/IBM/carbon-components/commits?author=srlim "Code") | [<img src="https://avatars1.githubusercontent.com/u/6663002?s=400&v=4" width="100px;"/><br /><sub><b>Scott Dickerson</b></sub>](https://github.com/scottdickerson)<br />[💻](https://github.com/IBM/carbon-components/commits?author=scottdickerson "Code") | [<img src="https://avatars1.githubusercontent.com/u/4836277?s=400&v=4" width="100px;"/><br /><sub><b>Alicia Hickman</b></sub>](https://github.com/aliciahickman)<br />[💻](https://github.com/IBM/carbon-components/commits?author=aliciahickman "Code") |
| [<img src="https://avatars2.githubusercontent.com/u/12685163?s=400&v=4" width="100px;"/><br /><sub><b>j1mie</b></sub>](https://github.com/j1mie)<br />[💻](https://github.com/IBM/carbon-components/commits?author=j1mie "Code") | [<img src="https://avatars3.githubusercontent.com/u/8265238?v=4" width="100px;"/><br /><sub><b>emyarod</b></sub>](https://github.com/emyarod)<br />[💻](https://github.com/IBM/carbon-components/commits?author=emyarod "Code") [📖](https://github.com/IBM/carbon-components/commits?author=emyarod "Documentation") |
## 🙌 Contributing

<!-- ALL-CONTRIBUTORS-LIST:END -->
We're always looking for contributors to help us fix bugs, build new
features, or help us improve the project documentation. If you're
interested, definitely check out our [Contributing Guide](/.github/CONTRIBUTING.md)
and our [Developer Guide](./github/developing.md)! 👀

Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
## 📝 License

This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!
Licensed under the [Apache 2.0 License](/LICENSE).
Loading