Skip to content

Commit f2d212e

Browse files
committed
feat: introduce setup-brew package
1 parent 20b8aaf commit f2d212e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+340
-82
lines changed

dist/actions/setup-cpp.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/actions/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
"copy.matchers": "run-p copy.matchers.legacy copy.matchers.actions",
3737
"copy.matchers.legacy": "shx cp ./src/gcc/gcc_matcher.json ./dist/legacy/ && shx cp ./src/msvc/msvc_matcher.json ./dist/legacy/ && shx cp ./src/python/python_matcher.json ./dist/legacy/ && shx cp ./src/llvm/llvm_matcher.json ./dist/legacy/",
3838
"copy.matchers.actions": "shx cp ./src/gcc/gcc_matcher.json ./dist/actions/ && shx cp ./src/msvc/msvc_matcher.json ./dist/actions/ && shx cp ./src/python/python_matcher.json ./dist/actions/ && shx cp ./src/llvm/llvm_matcher.json ./dist/actions/",
39-
"dev": "cross-env NODE_ENV=development parcel watch",
39+
"dev.parcel": "cross-env NODE_ENV=development parcel watch",
40+
"dev.packages": "turbo dev",
41+
"dev": "run-p dev.packages dev.parcel",
4042
"docs": "shx rm -rf packages/*/README.md && pnpm -r exec readme --path ../../dev/readme/template.md -y && pnpm -r exec ts-readme",
4143
"format": "run-s lint.dprint",
4244
"lint": "turbo lint && run-p --aggregate-output --continue-on-error lint.**",
@@ -114,6 +116,7 @@
114116
"retry-as-promised": "^7.0.4",
115117
"semver": "7.6.3",
116118
"setup-python": "github:aminya/setup-python#a783db655c6e40317e2c0c96f9d162d9c9f4a751",
119+
"setup-brew": "workspace:*",
117120
"shx": "0.3.4",
118121
"simple-update-notifier": "^2.0.0",
119122
"terser-config-atomic": "^1.0.0",
@@ -157,6 +160,7 @@
157160
"retry-as-promised",
158161
"semver",
159162
"setup-apt",
163+
"setup-brew",
160164
"setup-python",
161165
"simple-update-notifier",
162166
"time-delta",

packages/ci-log/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<h1 align="center">ci-log</h1>
22
<p>
3-
<img alt="Version" src="https://img.shields.io/badge/version-1.0.0-blue.svg?cacheSeconds=2592000" />
3+
<a href="https://www.npmjs.com/package/ci-log" target="_blank">
4+
<img alt="Version" src="https://img.shields.io/npm/v/ci-log.svg">
5+
</a>
46
<a href="#" target="_blank">
57
<img alt="License: Apache--2.0" src="https://img.shields.io/badge/License-Apache--2.0-yellow.svg" />
68
</a>

packages/ci-log/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"source": "./src/index.ts",
1111
"scripts": {
1212
"build": "tsc --pretty",
13+
"dev": "tsc --watch --pretty",
1314
"lint.tsc": "tsc --noEmit --pretty",
1415
"lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix",
1516
"prepublishOnly": "pnpm run build"

packages/envosman/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<h1 align="center">envosman</h1>
22
<p>
3-
<img alt="Version" src="https://img.shields.io/badge/version-1.0.0-blue.svg?cacheSeconds=2592000" />
3+
<a href="https://www.npmjs.com/package/envosman" target="_blank">
4+
<img alt="Version" src="https://img.shields.io/npm/v/envosman.svg">
5+
</a>
46
<img src="https://img.shields.io/badge/node-%3E%3D12-blue.svg" />
57
<a href="#" target="_blank">
68
<img alt="License: Apache--2.0" src="https://img.shields.io/badge/License-Apache--2.0-yellow.svg" />
@@ -23,6 +25,8 @@ npm install --save envosman
2325

2426
### `RcOptions` (type)
2527

28+
Options for adding an rc file
29+
2630
### `sourceRCInRc` (variable)
2731

2832
handles adding conditions to source rc file from .bashrc and .profile
@@ -48,6 +52,8 @@ Escape a string for use in a shell command
4852

4953
### `AddEnvOptions` (type)
5054

55+
The options for adding an environment variable
56+
5157
### `addEnv` (function)
5258

5359
Add an environment variable.
@@ -62,6 +68,10 @@ This function is cross-platforms and works in all the local or CI systems.
6268

6369
**returns:** Promise<void>
6470

71+
### `AddPathOptions` (type)
72+
73+
The options for adding a PATH variable
74+
6575
### `addPath` (function)
6676

6777
Add a path to the PATH environment variable.

0 commit comments

Comments
 (0)