Skip to content

Commit

Permalink
Merge branch 'master' into modalCustomizability-carbon-design-system#…
Browse files Browse the repository at this point in the history
  • Loading branch information
theiliad committed Jan 11, 2024
2 parents fbeac78 + 66f84b7 commit 65c9cbf
Show file tree
Hide file tree
Showing 206 changed files with 46,668 additions and 73,780 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Expand Up @@ -13,5 +13,5 @@ yarn.lock
**/node_modules
**/LICENSE.md

# Prettier (which shares this config) totally messess up Storybook MDX files right now
# Prettier (which shares this config) has issues with Storybook MDX files
*.mdx
2 changes: 1 addition & 1 deletion .github/workflows/dco.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
if:
(github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the
DCO document and I hereby sign the DCO.') || github.event_name == 'pull_request_target'
uses: cla-assistant/github-action@v2.2.1
uses: contributor-assistant/github-action@v2.3.1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
PERSONAL_ACCESS_TOKEN: ${{ secrets.DCO_PERSONAL_ACCESS_TOKEN }}
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Expand Up @@ -7,20 +7,19 @@ on:
jobs:
build:
if: github.actor != 'carbon-bot' && !startsWith(github.event.head_commit.message, 'skip-release')
name: Create release - Node.js v18.18.0
name: Create release - Node.js v18.19.0
runs-on: ubuntu-latest

steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}

- name: Use Node.js 18.18.0
uses: actions/setup-node@v3
- name: Use Node.js 18.19.0
uses: actions/setup-node@v4
with:
node-version: '18.18.0'
registry-url: 'https://registry.npmjs.org'
node-version: '18.19.0'

- name: Install dependencies 🔧
run: yarn install --immutable --check-cache
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -9,6 +9,10 @@
!.yarn/sdks
!.yarn/versions

# Lerna
.nx/cache

# Published Storybook websites for GitHub Pages
pages/

# Package-level
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
18.18.0
18.19.0
17 changes: 0 additions & 17 deletions .prettierignore

This file was deleted.

4 changes: 2 additions & 2 deletions .vscode/settings.json
@@ -1,5 +1,5 @@
{
"prettier.configPath": "prettier.config.mjs",
"prettier.ignorePath": ".prettierignore",
"prettier.prettierPath": ""
"prettier.ignorePath": ".eslintignore",
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
107 changes: 107 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,113 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.19 (2024-01-11)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.18 (2024-01-03)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.17 (2023-12-29)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.16 (2023-12-27)

### Bug Fixes

- **core,react,vue:** misnamed entry points generated by vite
([#1708](https://github.com/carbon-design-system/carbon-charts/issues/1708))
([882bf01](https://github.com/carbon-design-system/carbon-charts/commit/882bf01608be75d2990b27b7f656741c0c3685e2))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.15 (2023-12-22)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.14 (2023-12-20)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.13 (2023-12-20)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.12 (2023-12-18)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.11 (2023-12-18)

### Bug Fixes

- **svelte:** strongly type dispatched events
([#1703](https://github.com/carbon-design-system/carbon-charts/issues/1703))
([1a37ef2](https://github.com/carbon-design-system/carbon-charts/commit/1a37ef2be692400b257446f62d1350899e27dd59))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.10 (2023-12-18)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.9 (2023-12-06)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.13.8 (2023-11-15)

**Note:** Version bump only for package @carbon/charts-monorepo
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,5 +1,5 @@
<p align="center">
<a href="https://carbon-design-system.github.io/carbon-charts/">
<a href="https://charts.carbondesignsystem.com/">
<img src="packages/core/.storybook/assets/share.png" alt="Carbon Charts" />
</a>
<h3 align="center">Carbon Charts</h3>
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "1.13.8",
"version": "1.13.19",
"npmClient": "yarn",
"command": {
"publish": {
Expand Down
61 changes: 33 additions & 28 deletions package.json
Expand Up @@ -2,6 +2,7 @@
"name": "@carbon/charts-monorepo",
"private": true,
"description": "Carbon Charts component libraries for JavaScript, Angular, React, Svelte and Vue",
"type": "module",
"scripts": {
"clean:root": "rm -rf node_modules yarn.lock .yarn/cache .yarn/install-state.gz",
"clean:pages": "rm -rf pages && mkdir -p pages && touch pages/.nojekyll && echo 'charts.carbondesignsystem.com' > pages/CNAME",
Expand All @@ -22,46 +23,50 @@
"packages/*"
],
"engines": {
"node": "^18.18.0"
"node": "^18.19.0"
},
"packageManager": "yarn@4.0.2",
"prettier": "./prettier.config.mjs",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-external-helpers": "^7.23.3",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/html-vite": "^7.5.3",
"@storybook/manager-api": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@storybook/react-webpack5": "^7.5.3",
"@storybook/svelte": "^7.5.3",
"@storybook/sveltekit": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.5.3",
"@storybook/vue3": "^7.5.3",
"@storybook/vue3-vite": "^7.5.3",
"@nrwl/devkit": "^17.2.8",
"@storybook/addon-essentials": "~7.6.7",
"@storybook/addon-interactions": "~7.6.7",
"@storybook/addon-links": "~7.6.7",
"@storybook/blocks": "~7.6.7",
"@storybook/html-vite": "~7.6.7",
"@storybook/react-vite": "~7.6.7",
"@storybook/svelte": "~7.6.7",
"@storybook/sveltekit": "~7.6.7",
"@storybook/test": "^7.6.7",
"@storybook/theming": "~7.6.7",
"@storybook/vue3": "~7.6.7",
"@storybook/vue3-vite": "~7.6.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"commitizen": "^4.3.0",
"css-loader": "^6.8.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"lerna": "7.4.2",
"lerna": "8.0.1",
"pinst": "^3.0.0",
"prettier": "^3.1.0",
"prettier": "^3.1.1",
"prettier-config-carbon": "^0.11.0",
"prettier-eslint": "^16.2.0",
"prettier-plugin-svelte": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.3",
"webpack": "5.89.0"
"storybook": "~7.6.7",
"vite": "^5.0.10",
"vue": "^3.4.3"
},
"husky": {
"hooks": {
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/.storybook/main.ts
Expand Up @@ -17,7 +17,7 @@ const config: StorybookConfig = {
},
logLevel: 'error',
docs: {
autodocs: 'tag'
autodocs: false
},
webpackFinal: async config => {
config?.module?.rules?.push({
Expand Down

0 comments on commit 65c9cbf

Please sign in to comment.