Skip to content

Commit

Permalink
chore: remove legacy openssl provider flag (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
coolsoftwaretyler authored Oct 27, 2024
1 parent 3a0c831 commit 14569d9
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"build": "cross-env NODE_OPTIONS='--openssl-legacy-provider' lerna run build && cross-env npm run build:chrome && npm run build:firefox",
"start-playground": "cross-env NODE_ENV=development NODE_OPTIONS='--openssl-legacy-provider' webpack-dev-server --config packages/playground/webpack.config.js",
"start-playground-plain": "cross-env NODE_ENV=development cross-env PLAIN_DEVTOOL=true cross-env NODE_OPTIONS='--openssl-legacy-provider' webpack-dev-server --config packages/playground/webpack.config.js",
"build": "cross-env lerna run build && cross-env npm run build:chrome && npm run build:firefox",
"start-playground": "cross-env NODE_ENV=development webpack-dev-server --config packages/playground/webpack.config.js",
"start-playground-plain": "cross-env NODE_ENV=development cross-env PLAIN_DEVTOOL=true cross-env webpack-dev-server --config packages/playground/webpack.config.js",
"start-playground-electron": "cd packages/playground && npm run start-electron",
"submodules": "git submodule update --init ; git submodule foreach npm i",
"start:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome NODE_OPTIONS='--openssl-legacy-provider' node scripts/webextension/dev-server.js",
"start:chrome-debug-connection": "cross-env DEBUG_CONNECTION=true cross-env NODE_ENV=development TARGET_BROWSER=chrome NODE_OPTIONS='--openssl-legacy-provider' node scripts/webextension/dev-server.js",
"build:chrome": "cross-env NODE_ENV=production cross-env NODE_OPTIONS='--openssl-legacy-provider' TARGET_BROWSER=chrome node scripts/webextension/build.js && echo 'Chrome built'",
"start:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox NODE_OPTIONS='--openssl-legacy-provider' node scripts/webextension/dev-server.js",
"build:firefox": "cross-env NODE_ENV=production TARGET_BROWSER=firefox NODE_OPTIONS='--openssl-legacy-provider' node scripts/webextension/build.js",
"start:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome node scripts/webextension/dev-server.js",
"start:chrome-debug-connection": "cross-env DEBUG_CONNECTION=true cross-env NODE_ENV=development TARGET_BROWSER=chrome node scripts/webextension/dev-server.js",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome node scripts/webextension/build.js && echo 'Chrome built'",
"start:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox node scripts/webextension/dev-server.js",
"build:firefox": "cross-env NODE_ENV=production TARGET_BROWSER=firefox node scripts/webextension/build.js",
"test": "npm run test:unit",
"test:unit": "cross-env NODE_ENV=test NODE_OPTIONS='--openssl-legacy-provider' mocha --require '@babel/register' 'src/**/*-test.js'",
"test:unit": "cross-env NODE_ENV=test mocha --require '@babel/register' 'src/**/*-test.js'",
"test:e2e": "npm run test:e2e:chrome",
"test:e2e:chrome": "cross-env NODE_ENV=test TARGET_BROWSER=chrome NODE_OPTIONS='--openssl-legacy-provider' node scripts/webextension/build.js && npm run test:e2e:chrome:now",
"test:e2e:chrome:now": "cross-env NODE_ENV=test cross-env TARGET_BROWSER=chrome NODE_OPTIONS='--openssl-legacy-provider' mocha test/e2e",
"test:e2e:firefox": "cross-env NODE_ENV=test TARGET_BROWSER=firefox NODE_OPTIONS='--openssl-legacy-provider' node scripts/webextension/build.js && npm run test:e2e:firefox:now",
"test:e2e:firefox:now": "cross-env NODE_ENV=test cross-env TARGET_BROWSER=firefox NODE_OPTIONS='--openssl-legacy-provider' mocha test/e2e",
"test:e2e:chrome": "cross-env NODE_ENV=test TARGET_BROWSER=chrome node scripts/webextension/build.js && npm run test:e2e:chrome:now",
"test:e2e:chrome:now": "cross-env NODE_ENV=test TARGET_BROWSER=chrome mocha test/e2e",
"test:e2e:firefox": "cross-env NODE_ENV=test TARGET_BROWSER=firefox node scripts/webextension/build.js && npm run test:e2e:firefox:now",
"test:e2e:firefox:now": "cross-env NODE_ENV=test TARGET_BROWSER=firefox mocha test/e2e",
"lint": "eslint '**/*.js' '**/*.jsx'",
"lint-fix": "eslint --fix '**/*.js' '**/*.jsx'",
"precommit": "lint-staged"
Expand Down

0 comments on commit 14569d9

Please sign in to comment.