Skip to content

Commit

Permalink
Merge branch 'main' into additional-cloud-pictograms
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Aug 2, 2023
2 parents 8a6f9d7 + 909f48d commit 76053b3
Show file tree
Hide file tree
Showing 70 changed files with 16,612 additions and 12,307 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
jobs:
release:
runs-on: macos-11
# Needed as recommended by npm docs on publishing with provenance https://docs.npmjs.com/generating-provenance-statements
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@main
- name: Use Node.js 18.x
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
timeout-minutes: 60
# Needed as recommended by npm docs on publishing with provenance https://docs.npmjs.com/generating-provenance-statements
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/v10-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
timeout-minutes: 60
# Needed as recommended by npm docs on publishing with provenance https://docs.npmjs.com/generating-provenance-statements
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3

Expand Down
Binary file not shown.
3 changes: 2 additions & 1 deletion config/browserslist-config-carbon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"react"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
}
}
5 changes: 3 additions & 2 deletions config/eslint-config-carbon/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eslint-config-carbon",
"description": "ESLint configuration for Carbon",
"version": "3.7.0",
"version": "3.8.0-rc.0",
"license": "Apache-2.0",
"main": "index.js",
"repository": {
Expand All @@ -26,7 +26,8 @@
"react"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"peerDependencies": {
"eslint": "^8.0.0"
Expand Down
3 changes: 2 additions & 1 deletion config/prettier-config-carbon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"react"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"peerDependencies": {
"prettier": "2.x"
Expand Down
3 changes: 2 additions & 1 deletion config/stylelint-config-carbon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"react"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"peerDependencies": {
"stylelint": "^15.0.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/class-prefix/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "class-prefix",
"private": true,
"version": "0.31.0",
"version": "0.32.0-rc.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/codesandbox-styles/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codesandbox-styles",
"private": true,
"version": "0.37.0",
"version": "0.38.0-rc.0",
"type": "module",
"scripts": {
"dev": "vite"
Expand All @@ -11,6 +11,6 @@
"vite": "^4.3.8"
},
"dependencies": {
"@carbon/styles": "^1.34.0"
"@carbon/styles": "^1.35.0-rc.0"
}
}
4 changes: 2 additions & 2 deletions examples/codesandbox-with-sass-compilation/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "codesandbox-with-sass-compilation",
"version": "0.35.0",
"version": "0.36.0-rc.0",
"private": true,
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/codesandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "codesandbox",
"version": "0.35.0",
"version": "0.36.0-rc.0",
"private": true,
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/custom-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "custom-theme",
"private": true,
"version": "0.32.0",
"version": "0.33.0-rc.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/id-prefix/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "id-prefix",
"private": true,
"version": "0.31.0",
"version": "0.32.0-rc.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
6 changes: 3 additions & 3 deletions examples/incremental-migration/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "incremental-migration",
"private": true,
"version": "0.34.0",
"version": "0.35.0-rc.0",
"scripts": {
"build": "next build",
"dev": "next dev",
Expand All @@ -13,11 +13,11 @@
},
"dependencies": {
"@carbon/icons-react": "^10.49.0",
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"carbon-components": "^10.57.0",
"carbon-components-react": "^7.57.0",
"carbon-icons": "^7.0.7",
"next": "12.1.4",
"next": "13.4.7",
"react": "18.2.0",
"react-dom": "18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/light-dark-mode/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "examples-light-dark",
"private": true,
"version": "0.32.0",
"version": "0.33.0-rc.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"next": "12.1.4",
"react": "18.2.0",
"react-dom": "18.2.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "examples-nextjs",
"private": true,
"version": "0.34.0",
"version": "0.35.0-rc.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"next": "13.4.7",
"react": "18.2.0",
"react-dom": "18.2.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/v10-token-compat-in-v11/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "v10-token-compat-in-v11",
"private": true,
"version": "0.32.0",
"version": "0.33.0-rc.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/vite/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "vite",
"private": true,
"version": "0.32.0",
"version": "0.33.0-rc.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
9 changes: 5 additions & 4 deletions packages/carbon-components-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "carbon-components-react",
"description": "The Carbon Design System is IBM’s open-source design system for products and experiences.",
"version": "8.34.0",
"version": "8.35.0-rc.0",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.js",
Expand All @@ -27,7 +27,8 @@
"components"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"scripts": {
"build": "yarn clean && node tasks/build-styles.js && node tasks/build.js",
Expand All @@ -40,8 +41,8 @@
"sass": "^1.33.0"
},
"dependencies": {
"@carbon/react": "^1.34.0",
"@carbon/styles": "^1.34.0",
"@carbon/react": "^1.35.0-rc.0",
"@carbon/styles": "^1.35.0-rc.0",
"@carbon/telemetry": "0.1.0",
"chalk": "1.1.3"
},
Expand Down
7 changes: 4 additions & 3 deletions packages/carbon-components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "carbon-components",
"description": "The Carbon Design System is IBM’s open-source design system for products and experiences.",
"version": "11.34.0",
"version": "11.35.0-rc.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down Expand Up @@ -31,7 +31,8 @@
"react"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"scripts": {
"build": "node tasks/build-styles.js",
Expand All @@ -41,7 +42,7 @@
"sass": "^1.33.0"
},
"dependencies": {
"@carbon/styles": "^1.34.0",
"@carbon/styles": "^1.35.0-rc.0",
"@carbon/telemetry": "0.1.0",
"chalk": "1.1.3"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/cli-reporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"react"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"dependencies": {
"chalk": "^4.1.1"
Expand Down
5 changes: 3 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/cli",
"description": "Task automation for working with the Carbon Design System",
"version": "11.13.0",
"version": "11.14.0-rc.0",
"license": "Apache-2.0",
"bin": {
"carbon-cli": "./bin/carbon-cli.js"
Expand All @@ -20,7 +20,8 @@
"react"
],
"publishConfig": {
"access": "public"
"access": "public",
"provenance": true
},
"dependencies": {
"@babel/core": "^7.18.2",
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/commands/sync/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ function run({ packagePaths }) {
if (!packageJson.private) {
packageJson.publishConfig = {
access: 'public',
provenance: 'true',
};
}

Expand Down
6 changes: 3 additions & 3 deletions packages/colors/examples/preview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"@carbon/colors": "link:../../",
"@carbon/styles": "link:../../../styles",
"change-case": "^4.1.1",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"next": "^13.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.57.1"
}
}
Loading

0 comments on commit 76053b3

Please sign in to comment.