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

v10 Release #2208

Merged
merged 41 commits into from
Mar 29, 2019
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
59f5e00
feat(feature-flags): enable flags for v10
joshblack Mar 26, 2019
72b9ce8
chore(package): update build step for HTML output
joshblack Mar 26, 2019
5ddc5c7
chore(components): remove carousel
joshblack Mar 26, 2019
f8cccd2
chore(components): remove fab component
joshblack Mar 26, 2019
4efcf52
chore(components): remove footer component
joshblack Mar 26, 2019
b8c7b07
chore(components): remove interior-left-nav
joshblack Mar 26, 2019
927f480
chore(components): remove lightbox component
joshblack Mar 26, 2019
e34eb34
chore(components): remove unified header component
joshblack Mar 26, 2019
7f1642d
fix(js): remove components from globals
joshblack Mar 26, 2019
95a0047
feat(ui-shell): enable ui-shell feature flag
joshblack Mar 26, 2019
889059d
refactor(tests): remove unused tests
joshblack Mar 26, 2019
df29f85
refactor(test): update tests that are meant for classic mode
joshblack Mar 26, 2019
1fdade4
docs(migration): update docs to include removed sass features
joshblack Mar 26, 2019
9edb556
chore(globals): update failing css--* tests
joshblack Mar 26, 2019
4addd18
chore: revert fit to it in test
joshblack Mar 26, 2019
1d5fb05
Merge branch 'master' into v10-release
joshblack Mar 27, 2019
309ebc5
Merge branch 'master' into v10-release
joshblack Mar 27, 2019
0e0c6d4
Update package.json
joshblack Mar 27, 2019
27bfee6
Merge branch 'master' into v10-release
joshblack Mar 27, 2019
49b6d1e
Merge branch 'master' into v10-release
joshblack Mar 27, 2019
3728759
chore(data-table): remove v1 data-table files
joshblack Mar 27, 2019
9f3442e
chore(data-table): remove data-table reference in styles.scss
joshblack Mar 27, 2019
7244c63
chore(data-table): remove data-table import in globals
joshblack Mar 27, 2019
7817086
chore(package): v10.0.0-rc.0
joshblack Mar 27, 2019
a1deae8
chore(flags): revert ui-shell flag
joshblack Mar 27, 2019
5e66e65
Merge branch 'master' into v10-release
joshblack Mar 28, 2019
8a8f887
Merge branch 'master' into v10-release
joshblack Mar 28, 2019
e9d1ad5
Revert "chore: revert fit to it in test"
joshblack Mar 28, 2019
d6eb907
Revert "chore(globals): update failing css--* tests"
joshblack Mar 28, 2019
4cfaa33
Revert "refactor(test): update tests that are meant for classic mode"
joshblack Mar 28, 2019
245e27e
Merge branch 'v10-release' of github.com:joshblack/carbon-components …
joshblack Mar 28, 2019
4d179a3
Merge branch 'master' into v10-release
joshblack Mar 28, 2019
d51b260
Merge branch 'master' into v10-release
joshblack Mar 28, 2019
dcde80a
chore(tests): remove data-table spec
joshblack Mar 28, 2019
bd719c6
Merge branch 'master' into v10-release
joshblack Mar 28, 2019
dfba4a4
Merge branch 'master' into v10-release
joshblack Mar 28, 2019
dab2329
Merge branch 'master' into v10-release
joshblack Mar 28, 2019
2aeb12d
Merge branch 'master' into v10-release
joshblack Mar 29, 2019
9ca8295
Merge branch 'master' into v10-release
joshblack Mar 29, 2019
b9dba5e
chore(ci): remove semantic-release
joshblack Mar 29, 2019
d345ba8
Merge branch 'v10-release' of github.com:joshblack/carbon-components …
joshblack Mar 29, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/migration/migrate-to-10.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,10 @@ Refer to the [Carbon X Migration Guide](https://carbondesignsystem.com/updates/m
| `src` | Deprecated in v10, use `scss` instead [Migrate](../../src/migrate-to-10.x.md) |
| `scss/globals` | [Migrate](../../src/globals/scss/migrate-to-10.x.md) |
| `scss/globals/grid` | [Migrate](../../src/globals/scss/grid/migrate-to-10.x.md) |

### Features

| Sass feature | v10 |
| ------------------- | ------- |
| `font-size` mixin | Removed |
| `line-height` mixin | Removed |
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "carbon-components",
"description": "Carbon Components is a component library for IBM Cloud",
"homepage": "http://carbondesignsystem.com/",
"version": "7.2.1",
"description": "The Carbon Design System is IBM’s open-source design system for products and experiences.",
"homepage": "https://www.carbondesignsystem.com/",
"version": "10.0.0-beta.1",
"module": "es/index.js",
"main": "umd/index.js",
"repository": {
Expand Down Expand Up @@ -172,10 +172,12 @@
"scripts/**/*",
"scss/**/*",
"src/**/*",
"umd/**/*"
"umd/**/*",
"!**/*.config.js",
"!**/__tests__/**/*"
],
"scripts": {
"build": "gulp build",
"build": "gulp build && gulp html:source -e",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't be necessary as long as we flip feature flags, but definitely let me know if you find otherwise!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@asudoh it seems like the default build doesn't generate this, unfortunately. Seems like something is going on 🤔

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK good catch @joshblack! Created: #2215

"build-dev": "gulp build:dev",
"build-dev-rollup": "gulp build:dev:deploy --rollup",
"build-dev-rollup-experimental": "gulp build:dev:deploy --rollup -e",
Expand All @@ -186,7 +188,7 @@
"lint:staged": "eslint",
"prebuild": "gulp clean",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"prepublishOnly": "yarn build",
"format": "prettier --write \"**/*.{css,js,md,scss}\"",
"format:staged": "prettier --write",
"start": "node server.js",
Expand Down
Empty file removed src/components/carousel/README.md
Empty file.
101 changes: 0 additions & 101 deletions src/components/carousel/_carousel.scss

This file was deleted.

55 changes: 0 additions & 55 deletions src/components/carousel/carousel.config.js

This file was deleted.

49 changes: 0 additions & 49 deletions src/components/carousel/carousel.hbs

This file was deleted.

86 changes: 0 additions & 86 deletions src/components/carousel/carousel.js

This file was deleted.

Loading