Skip to content

Commit

Permalink
internal: Convert to yarn 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ntucker committed Feb 9, 2024
1 parent 0e18450 commit 5143d03
Show file tree
Hide file tree
Showing 6 changed files with 11,041 additions and 7,210 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ build/Release
node_modules/
jspm_packages/
flow-typed/
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Typescript v1 declaration files
typings/
Expand Down
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.1.0.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.1.0.cjs
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@
"README.md"
],
"scripts": {
"build:lib": "cross-env NODE_ENV=production BROWSERSLIST_ENV='2018' babel src --out-dir lib --source-maps inline --extensions '.ts,.tsx,.js' --ignore '**/__tests__/**' --ignore '**/*.d.ts'",
"build:lib": "NODE_ENV=production BROWSERSLIST_ENV='2018' babel src --out-dir lib --source-maps inline --extensions '.ts,.tsx,.js' --ignore '**/__tests__/**' --ignore '**/*.d.ts'",
"build:types": "tsc --emitDeclarationOnly -p ./src",
"build:bundle": "npm run build:js:node && npm run build:js:browser",
"build:bundle": "run build:js:node && run build:js:browser",
"build:js:node": "BROWSERSLIST_ENV=node12 rollup -c",
"build:js:browser": "BROWSERSLIST_ENV=legacy rollup -c",
"build:clean": "rimraf lib",
"build": "npm run build:lib && npm run build:types",
"build": "run build:lib && run build:types",
"dev": "yarn run build:lib -w",
"prepare": "npm run build:clean && npm run build",
"prepublishOnly": "npm run build:bundle",
"prepare": "run build:clean && run build",
"prepack": "run prepare && run build:bundle",
"lint": "eslint --ext .ts,.tsx",
"format": "eslint --fix \"src/**/*.{js,ts,tsx}\"",
"test": "cross-env NODE_ENV=test jest",
"test:ci": "npm test -- --ci",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"test": "NODE_ENV=test jest",
"test:ci": "run test -- --ci",
"test:watch": "run test -- --watch",
"test:coverage": "run test -- --coverage",
"changelog": "npx auto-changelog --stdout",
"beforeStage": "npx auto-changelog -p && git add CHANGELOG.md"
},
Expand Down Expand Up @@ -74,7 +74,6 @@
"babel-plugin-root-import": "6.6.0",
"coveralls": "3.1.1",
"cpy-cli": "5.0.0",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "2.29.1",
Expand Down Expand Up @@ -135,5 +134,6 @@
"github": {
"release": true
}
}
},
"packageManager": "[email protected]"
}
12 changes: 0 additions & 12 deletions salus.yaml

This file was deleted.

Loading

0 comments on commit 5143d03

Please sign in to comment.