@goldstack/utils-yarn 0.4.36 → 0.4.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -1
  2. package/package.json +7 -8
package/README.md CHANGED
@@ -1,5 +1,20 @@
1
+ [![npm version](https://badge.fury.io/js/%40goldstack%2Futils-yarn.svg)](https://badge.fury.io/js/%40goldstack%2Futils-yarn)
2
+
1
3
  # Goldstack Yarn Utilities
2
4
 
3
5
  This library allows running [yarn](https://yarnpkg.com/) commands from Node.js applications.
4
6
 
5
- See [utilsYarn.ts](https://github.com/goldstack/goldstack/blob/master/workspaces/templates-lib/packages/utils-yarn/src/utilsYarn.ts).
7
+ This utility has been developed for the [Goldstack](https://goldstack.party) starter project builder. Check it out for starting your next project ❤️
8
+ ## Installation
9
+
10
+ ```bash
11
+ npm install @goldstack/utils-yarn
12
+ ```
13
+
14
+ ## Usage
15
+ ```typescript
16
+ import { yarnInstall } from '@goldstack/utils-yarn';
17
+
18
+ await yarnInstall();
19
+
20
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goldstack/utils-yarn",
3
- "version": "0.4.36",
3
+ "version": "0.4.39",
4
4
  "description": "Easily run yarn commands from within JavaScript code",
5
5
  "keywords": [
6
6
  "goldstack",
@@ -29,24 +29,23 @@
29
29
  "compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
30
30
  "coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
31
31
  "prepublishOnly": "yarn run build",
32
- "publish": "utils-git changed --exec \"yarn npm publish $@\"",
32
+ "publish": "yarn npm publish --tolerate-republish",
33
33
  "test": "jest --passWithNoTests --config=./jest.config.js --runInBand",
34
- "version:apply": "utils-git changed --exec \"yarn version $@ && yarn version apply\"",
34
+ "version:apply": "yarn version $@ && yarn version apply",
35
35
  "version:apply:force": "yarn version $@ && yarn version apply"
36
36
  },
37
37
  "dependencies": {
38
- "@goldstack/utils-docker": "0.4.35",
39
- "@goldstack/utils-log": "0.3.29",
40
- "@goldstack/utils-sh": "0.5.33"
38
+ "@goldstack/utils-docker": "0.4.38",
39
+ "@goldstack/utils-log": "0.3.31",
40
+ "@goldstack/utils-sh": "0.5.36"
41
41
  },
42
42
  "devDependencies": {
43
- "@goldstack/utils-git": "0.2.22",
44
43
  "@swc/core": "^1.15.8",
45
44
  "@swc/jest": "^0.2.39",
46
45
  "@types/jest": "^30.0.0",
47
46
  "@types/node": "^25.0.3",
48
47
  "jest": "^30.2.0",
49
- "rimraf": "^3.0.2",
48
+ "rimraf": "^6.1.2",
50
49
  "typescript": "^5.9.3"
51
50
  },
52
51
  "publishConfig": {