Skip to content

Commit

Permalink
chore(package): remove openssl-legacy flag from package.json (carbon-…
Browse files Browse the repository at this point in the history
…design-system#11417)

### Description

Removes `openssl-legacy-provider` flag from `package.json` commands. Since `yarn.lock` has been cleaned this is no longer necessary.

### Changelog

**New**

- {{new thing}}

**Changed**

- {{changed thing}}

**Removed**

- `openssl-legacy-provider` flag from `package.json` commands

<!-- React and Web Component deploy previews are enabled by default. -->
<!-- To enable additional available deploy previews, apply the following -->
<!-- labels for the corresponding package: -->
<!-- *** "test: e2e": Codesandbox examples and e2e integration tests -->
<!-- *** "package: services": Services -->
<!-- *** "package: utilities": Utilities -->
<!-- *** "RTL": React / Web Components (RTL) -->
<!-- *** "feature flag": React / Web Components (experimental) -->
  • Loading branch information
kennylam authored Jan 19, 2024
1 parent 0655982 commit 42384ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web-components/packages/carbon-web-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@
"build": "gulp build && yarn wca",
"build:dist": "gulp build:dist",
"build:dist:dev": "gulp build:dist:dev",
"build-storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider BABEL_ENV=es build-storybook",
"build-storybook": "cross-env BABEL_ENV=es build-storybook",
"ci-check": "yarn wca && yarn typecheck && yarn build && yarn test:unit",
"clean": "gulp clean",
"reset": "yarn cache clean && yarn clean && rimraf node_modules && yarn install && yarn build",
"start": "yarn storybook",
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 9000",
"storybook": "start-storybook -p 9000",
"test": "gulp test && yarn test:integration",
"test:integration": "yarn test:integration:build && yarn test:integration:ui",
"test:integration:build": "jest -c tests/integration/build/jest.config.js --runInBand",
"test:integration:ui": "jest -c tests/integration/ui/jest.config.js --runInBand",
"test:unit": "cross-env NODE_OPTIONS=--openssl-legacy-provider gulp test:unit",
"test:unit:updateSnapshot": "NODE_OPTIONS=--openssl-legacy-provider gulp test:unit --update-snapshot",
"test:unit": "gulp test:unit",
"test:unit:updateSnapshot": "gulp test:unit --update-snapshot",
"typecheck": "tsc --noEmit -p tsconfig.json",
"visual-snapshot": "yarn build-storybook && percy storybook:start ./storybook-static",
"wca": "web-component-analyzer analyze src --outFile custom-elements.json"
Expand Down

0 comments on commit 42384ff

Please sign in to comment.