Skip to content

Commit

Permalink
chore: update yarn classic to [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
adamviktora committed Nov 13, 2024
1 parent 1f97fe7 commit 426bfb7
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 12 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,14 @@ test/packages/*
.DS_Store
dist

# Yarn modern
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# IDE - VSCode
.history
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,14 @@
"packages/*"
],
"devDependencies": {
"lerna": "^3.22.0",
"mocha": "^7.2.0",
"plop": "^3.1.2",
"ts-node": "^10.9.2",
"@types/fs-extra": "^11.0.4",
"case-anything": "^2.1.13",
"fs-extra": "^11.2.0",
"@types/fs-extra": "^11.0.4"
"lerna": "^8.1.9",
"mocha": "^7.2.0",
"plop": "^3.1.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
"packageManager": "yarn@4.5.1"
}
2 changes: 1 addition & 1 deletion packages/class-name-updater/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"commander": "^5.1.0",
"diff": "^5.1.0",
"glob": "^10.2.6",
"shared-helpers": "^1.0.0"
"shared-helpers": "workspace:^1.0.0"
},
"devDependencies": {
"@types/diff": "^5.0.9",
Expand Down
6 changes: 4 additions & 2 deletions packages/css-vars-updater/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"description": "Utility to update Patternfly CSS variables when migrating from V5 to a new design token system in V6",
"author": "Red Hat",
"license": "MIT",
"bin": "./dist/cli.js",
"bin": {
"css-vars-updater": "./dist/cli.js"
},
"engines": {
"node": ">=18"
},
Expand All @@ -21,7 +23,7 @@
"diff": "^5.1.0",
"glob": "^10.2.6",
"inquirer": "^12.0.1",
"shared-helpers": "^1.0.0"
"shared-helpers": "workspace:^1.0.0"
},
"devDependencies": {
"@types/diff": "^5.0.9",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-pf-codemods/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"clean": "rimraf ./dist"
},
"dependencies": {
"shared-helpers": "^1.0.0"
"shared-helpers": "workspace:^1.0.0"
},
"peerDependencies": {
"@typescript-eslint/parser": ">=5.58.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/shared-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name": "shared-helpers",
"version": "1.0.0",
"description": "Shared helpers for the monorepo",
"author": "Red Hat",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build --verbose ./tsconfig.json",
"clean": "rimraf ./dist"
},
"author": "Red Hat",
"license": "MIT",
"dependencies": {
"colors": "^1.4.0",
"diff": "^5.1.0"
Expand Down
1 change: 1 addition & 0 deletions packages/shared-helpers/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "CommonJS",
"outDir": "./dist"
},
"include": ["src/**/*"],
Expand Down

0 comments on commit 426bfb7

Please sign in to comment.