Skip to content

Commit 623d0d6

Browse files
authored
Merge pull request #2655 from carbon-design-system/next
Merge branch 'next' into master
2 parents 93234fd + 212933e commit 623d0d6

File tree

739 files changed

+110755
-141357
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

739 files changed

+110755
-141357
lines changed

.github/workflows/check-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Check build
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ master, next ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ master, next ]
88

99
jobs:
1010
build:
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [14.x]
16+
node-version: [16.x]
1717

1818
steps:
1919
- uses: actions/checkout@v3
@@ -41,8 +41,8 @@ jobs:
4141

4242
strategy:
4343
matrix:
44-
angular-version: [7, 8, 9, 10, 11, 12, 13, 14, 15]
45-
node-version: [14.x]
44+
angular-version: [14, 15, 16]
45+
node-version: [16.x]
4646

4747
steps:
4848
- uses: actions/checkout@v3

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
- name: Checkout
2020
uses: actions/checkout@v3
2121

22-
# Set up node to use v14
22+
# Set up node to use v16
2323
- name: Setup Node
2424
uses: actions/setup-node@v3
2525
with:
26-
node-version: "14"
26+
node-version: "16"
2727
cache: "npm"
2828
cache-dependency-path: "package-lock.json"
2929

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [14.x]
16+
node-version: [16.x]
1717

1818
steps:
1919
- uses: actions/checkout@v3

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.angular/cache
12
.DS_Store
23
*.log*
34
*.swp

.husky/commit-msg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
set -e
5+
6+
# Lint commit messages
7+
npx --no -- commitlint --edit $1

.husky/pre-push

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
set -e
5+
6+
# Lint files before pushing
7+
npm run lint

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v14
1+
v16

.storybook/addons.js

Lines changed: 0 additions & 34 deletions
This file was deleted.

.storybook/config.js

Lines changed: 0 additions & 31 deletions
This file was deleted.

.storybook/main.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
const path = require('path');
2+
module.exports = {
3+
staticDirs: ["public"],
4+
stories: ["../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
5+
addons: [
6+
"@storybook/addon-links",
7+
{
8+
name: "@storybook/addon-essentials",
9+
options: {
10+
backgrounds: false
11+
}
12+
},
13+
"@storybook/addon-a11y"
14+
],
15+
framework: {
16+
name: "@storybook/angular",
17+
options: {}
18+
},
19+
core: {
20+
disableTelemetry: true
21+
},
22+
docs: {
23+
autodocs: true
24+
}
25+
};

0 commit comments

Comments
 (0)