Skip to content
This repository was archived by the owner on Feb 24, 2024. It is now read-only.

Commit 88ed38a

Browse files
committedMay 13, 2023
Update Yarn to 3.5.1
1 parent a320ef3 commit 88ed38a

File tree

7 files changed

+13834
-3207
lines changed

7 files changed

+13834
-3207
lines changed
 

‎.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.yarn/releases/** binary
2+
/.yarn/plugins/** binary

‎.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,11 @@ node_modules
77
/.idea
88

99
# Yarn
10+
.pnp.*
11+
.yarn/*
12+
!.yarn/patches
13+
!.yarn/plugins
14+
!.yarn/releases
15+
!.yarn/sdks
16+
!.yarn/versions
1017
yarn-error.log

‎.yarn/releases/yarn-3.5.1.cjs

+873
Large diffs are not rendered by default.

‎.yarnrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-3.5.1.cjs

‎package-lock.json

+8,049
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+6-8
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"description": "Command line tool to produce single source file from multiple C/C++ files",
55
"repository": {
66
"type": "git",
7-
"url": "git@github.com:RandomVoid/cpp-merge.git"
7+
"url": "git@github.com:FastAlien/cpp-merge.git"
88
},
9-
"homepage": "https://github.com/RandomVoid/cpp-merge",
10-
"author": "RandomVoid (https://github.com/RandomVoid)",
9+
"homepage": "https://github.com/FastAlien/cpp-merge",
10+
"author": "FastAlien (https://github.com/FastAlien)",
1111
"license": "MIT",
1212
"files": [
1313
"lib/**/*.js",
@@ -24,10 +24,7 @@
2424
"test": "jest --coverage --coverageReporters=text",
2525
"prepublishOnly": "yarn build && chmod +x lib/cli.js && yarn lint && yarn test"
2626
},
27-
"bin": {
28-
"cpp-merge": "lib/cli.js"
29-
},
30-
"dependencies": {},
27+
"bin": "lib/cli.js",
3128
"devDependencies": {
3229
"@tsconfig/node10": "^1.0.8",
3330
"@types/jest": "^27.0.1",
@@ -48,5 +45,6 @@
4845
"merge",
4946
"single",
5047
"source"
51-
]
48+
],
49+
"packageManager": "yarn@3.5.1"
5250
}

‎yarn.lock

+4,894-3,199
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
This repository has been archived.