Skip to content

Commit 0f9cc6f

Browse files
committed
1 parent 2b6e46b commit 0f9cc6f

File tree

5 files changed

+648
-2
lines changed

5 files changed

+648
-2
lines changed

Diff for: .github/workflows/coverage.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- uses: actions/setup-node@v2
1515
with:
1616
node-version: ${{ matrix.node-version }}
17+
cache: 'yarn'
1718
- run: yarn set version berry
1819
- run: yarn install
1920
- run: yarn coverage:check

Diff for: .github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- uses: actions/setup-node@v2
1919
with:
2020
node-version: ${{ matrix.node-version }}
21+
cache: 'yarn'
2122
- run: yarn set version berry
2223
- run: yarn -v
2324
- run: yarn install

Diff for: .gitignore

+7-2
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,14 @@ dist
111111
# Stores VSCode versions used for testing VSCode extensions
112112
.vscode-test
113113

114-
# yarn v3
115-
.yarn/*
114+
# yarn v2, v3
116115
.pnp.*
116+
.yarn/*
117+
!.yarn/patches
118+
!.yarn/plugins
119+
!.yarn/releases
120+
!.yarn/sdks
121+
!.yarn/versions
117122

118123
# Scramjet framework specific
119124
build

Diff for: .yarn/plugins/@yarnpkg/plugin-echo-execute.cjs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/* eslint-disable */
2+
module.exports = {
3+
name: "@yarnpkg/plugin-echo-execute",
4+
factory: function (require) {
5+
var plugin;(()=>{"use strict";var o={d:(t,e)=>{for(var r in e)o.o(e,r)&&!o.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},o:(o,t)=>Object.prototype.hasOwnProperty.call(o,t),r:o=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(o,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(o,"__esModule",{value:!0})}},t={};o.r(t),o.d(t,{default:()=>r});const e=require("@yarnpkg/core"),r={hooks:{wrapScriptExecution:async(o,t,r,a,n)=>async()=>(await e.StreamReport.start({configuration:t.configuration,json:!1,includeFooter:!1,stdout:n.stdout},async o=>{const r=e.formatUtils.applyColor(t.configuration,a,e.formatUtils.Type.NAME),i=e.formatUtils.applyColor(t.configuration,n.script,e.formatUtils.Type.CODE);o.reportInfo(e.MessageName.UNNAMED,`executing [${r}]: ${i}`)}),o())}};plugin=t})();
6+
return plugin;
7+
}
8+
};

Diff for: .yarn/releases/yarn-berry.cjs

+631
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)