@anolilab/semantic-release-pnpm
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -0,1 +1,15 @@ | ||
## @anolilab/semantic-release-pnpm [1.1.4](https://github.com/anolilab/semantic-release/compare/@anolilab/semantic-release-pnpm@1.1.3...@anolilab/semantic-release-pnpm@1.1.4) (2024-10-26) | ||
### Bug Fixes | ||
* removed move-file to use @visulima/fs function ([a498b0d](https://github.com/anolilab/semantic-release/commit/a498b0d9f8b2ba632eec93cdc5b3dd90085a9370)) | ||
* **semantic-release-pnpm:** fixed exports ([ffe0eba](https://github.com/anolilab/semantic-release/commit/ffe0eba30697ac93e4e937b19049d721d9777471)) | ||
* switched from tsup to @visulima/packem ([e35f8b4](https://github.com/anolilab/semantic-release/commit/e35f8b4713e2e020b1d99d4eb7ff0566b5d9af8f)) | ||
* upgraded visulima packages, execa, ini and semver ([e720a24](https://github.com/anolilab/semantic-release/commit/e720a2481390d8eb66163a22c7fbe53d8b512eb3)) | ||
### Dependencies | ||
* **@anolilab/rc:** upgraded to 1.1.3 | ||
## @anolilab/semantic-release-pnpm [1.1.3](https://github.com/anolilab/semantic-release/compare/@anolilab/semantic-release-pnpm@1.1.2...@anolilab/semantic-release-pnpm@1.1.3) (2024-06-11) | ||
@@ -2,0 +16,0 @@ |
import stream from 'node:stream'; | ||
import { Commit, Options } from 'semantic-release'; | ||
interface BranchObject { | ||
channel?: string | false | undefined; | ||
name: string; | ||
prerelease?: boolean | string | undefined; | ||
range?: string | undefined; | ||
} | ||
type BranchSpec$1 = BranchObject | string; | ||
type PluginSpec<T = any> = string | [string, T]; | ||
interface Options { | ||
[name: string]: any; | ||
branches?: BranchSpec$1 | ReadonlyArray<BranchSpec$1> | undefined; | ||
ci?: boolean | undefined; | ||
dryRun?: boolean | undefined; | ||
extends?: ReadonlyArray<string> | string | undefined; | ||
plugins?: ReadonlyArray<PluginSpec> | undefined; | ||
repositoryUrl?: string | undefined; | ||
tagFormat?: string | undefined; | ||
} | ||
interface Commit { | ||
author: { | ||
email: string; | ||
name: string; | ||
short: string; | ||
}; | ||
body: string; | ||
commit: { | ||
long: string; | ||
short: string; | ||
}; | ||
committer: { | ||
email: string; | ||
name: string; | ||
short: string; | ||
}; | ||
committerDate: string; | ||
hash: string; | ||
message: string; | ||
subject: string; | ||
tree: { | ||
long: string; | ||
short: string; | ||
}; | ||
} | ||
interface CommonContext { | ||
@@ -8,3 +51,3 @@ branch: BranchSpec; | ||
cwd: string; | ||
env: typeof process.env; | ||
env: "object"; | ||
logger: { | ||
@@ -11,0 +54,0 @@ error: (...message: string[]) => void; |
@@ -22,1 +22,7 @@ MIT License | ||
SOFTWARE. | ||
<!-- DEPENDENCIES --> | ||
<!-- /DEPENDENCIES --> | ||
<!-- TYPE_DEPENDENCIES --> | ||
<!-- /TYPE_DEPENDENCIES --> |
{ | ||
"name": "@anolilab/semantic-release-pnpm", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "Semantic-release plugin to publish a npm package with pnpm.", | ||
@@ -41,5 +41,4 @@ "keywords": [ | ||
"type": "module", | ||
"exports": "./dist/index.js", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"main": "./dist/index.mjs", | ||
"types": "./dist/index.d.mts", | ||
"files": [ | ||
@@ -51,14 +50,13 @@ "dist", | ||
"dependencies": { | ||
"@anolilab/rc": "1.1.2", | ||
"@anolilab/rc": "1.1.3", | ||
"@semantic-release/error": "^4.0.0", | ||
"@visulima/fs": "^2.1.4", | ||
"@visulima/package": "^1.10.0", | ||
"@visulima/path": "^1.0.2", | ||
"@visulima/fs": "^2.3.0", | ||
"@visulima/package": "^3.1.5", | ||
"@visulima/path": "^1.1.1", | ||
"aggregate-error": "^5.0.0", | ||
"execa": "^9.2.0", | ||
"ini": "^4.1.3", | ||
"move-file": "^3.1.0", | ||
"execa": "^9.4.1", | ||
"ini": "^5.0.0", | ||
"normalize-url": "^8.0.1", | ||
"registry-auth-token": "^5.0.2", | ||
"semver": "^7.6.2" | ||
"semver": "^7.6.3" | ||
}, | ||
@@ -68,5 +66,6 @@ "devDependencies": { | ||
"@anolilab/prettier-config": "^5.0.14", | ||
"@babel/core": "^7.24.7", | ||
"@rushstack/eslint-plugin-security": "^0.8.1", | ||
"@secretlint/secretlint-rule-preset-recommend": "^8.2.4", | ||
"@arethetypeswrong/cli": "^0.16.4", | ||
"@babel/core": "^7.26.0", | ||
"@rushstack/eslint-plugin-security": "^0.8.3", | ||
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0", | ||
"@semantic-release/changelog": "^6.0.3", | ||
@@ -76,16 +75,18 @@ "@semantic-release/commit-analyzer": "13.0.0", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/github": "^10.0.6", | ||
"@semantic-release/release-notes-generator": "14.0.0", | ||
"@types/dockerode": "^3.3.29", | ||
"@semantic-release/github": "^11.0.0", | ||
"@semantic-release/release-notes-generator": "14.0.1", | ||
"@types/dockerode": "^3.3.31", | ||
"@types/ini": "^4.1.1", | ||
"@types/node": "20.14.2", | ||
"@types/node": "18.19.59", | ||
"@types/semantic-release__error": "3.0.3", | ||
"@types/semver": "7.5.8", | ||
"@types/stream-buffers": "^3.0.7", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"@vitest/ui": "^1.6.0", | ||
"@visulima/packem": "^1.1.1", | ||
"@vitest/coverage-v8": "^2.1.3", | ||
"@vitest/ui": "^2.1.3", | ||
"conventional-changelog-conventionalcommits": "8.0.0", | ||
"cross-env": "^7.0.3", | ||
"dockerode": "4.0.2", | ||
"eslint": "^9.4.0", | ||
"esbuild": "0.24.0", | ||
"eslint": "^8.57.1", | ||
"eslint-plugin-deprecation": "^3.0.0", | ||
@@ -95,19 +96,18 @@ "eslint-plugin-editorconfig": "^4.0.3", | ||
"eslint-plugin-mdx": "^3.1.5", | ||
"eslint-plugin-n": "^17.8.1", | ||
"eslint-plugin-vitest": "^0.5.4", | ||
"eslint-plugin-n": "^17.11.1", | ||
"eslint-plugin-vitest": "^0.4.1", | ||
"eslint-plugin-vitest-globals": "^1.5.0", | ||
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0", | ||
"get-stream": "9.0.1", | ||
"got": "^14.4.1", | ||
"got": "^14.4.3", | ||
"p-retry": "^6.2.0", | ||
"prettier": "^3.3.2", | ||
"rimraf": "^5.0.7", | ||
"secretlint": "8.2.4", | ||
"semantic-release": "^24.0.0", | ||
"sort-package-json": "^2.10.0", | ||
"stream-buffers": "^3.0.2", | ||
"prettier": "^3.3.3", | ||
"rimraf": "^6.0.1", | ||
"secretlint": "9.0.0", | ||
"semantic-release": "^24.2.0", | ||
"sort-package-json": "^2.10.1", | ||
"stream-buffers": "^3.0.3", | ||
"tempy": "^3.1.0", | ||
"tsup": "^8.1.0", | ||
"typescript": "^5.4.5", | ||
"vitest": "^1.6.0" | ||
"typescript": "^5.6.3", | ||
"vitest": "^2.1.3" | ||
}, | ||
@@ -137,6 +137,7 @@ "engines": { | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=development tsup", | ||
"build:prod": "cross-env NODE_ENV=production tsup", | ||
"build": "cross-env NODE_ENV=development packem build", | ||
"build:prod": "cross-env NODE_ENV=production packem build", | ||
"clean": "rimraf node_modules dist .eslintcache", | ||
"dev": "pnpm run build --watch", | ||
"lint:attw": "attw --pack", | ||
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs", | ||
@@ -143,0 +144,0 @@ "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix", |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
11
188
43842
46
1
+ Added@anolilab/rc@1.1.3(transitive)
+ Added@antfu/install-pkg@1.0.0(transitive)
+ Added@inquirer/confirm@5.1.6(transitive)
+ Added@inquirer/core@10.1.7(transitive)
+ Added@inquirer/figures@1.0.10(transitive)
+ Added@inquirer/type@3.0.4(transitive)
+ Added@visulima/fs@3.1.0(transitive)
+ Added@visulima/package@3.5.1(transitive)
+ Addedansi-escapes@4.3.2(transitive)
+ Addedansi-regex@5.0.1(transitive)
+ Addedansi-styles@4.3.0(transitive)
+ Addedcli-width@4.1.0(transitive)
+ Addedcolor-convert@2.0.1(transitive)
+ Addedcolor-name@1.1.4(transitive)
+ Addedemoji-regex@8.0.0(transitive)
+ Addedhosted-git-info@8.0.2(transitive)
+ Addedini@5.0.0(transitive)
+ Addedis-fullwidth-code-point@3.0.0(transitive)
+ Addedmute-stream@2.0.0(transitive)
+ Addednormalize-package-data@7.0.0(transitive)
+ Addedpackage-manager-detector@0.2.11(transitive)
+ Addedquansync@0.2.7(transitive)
+ Addedstring-width@4.2.3(transitive)
+ Addedstrip-ansi@6.0.1(transitive)
+ Addedtinyexec@0.3.2(transitive)
+ Addedtype-fest@0.21.3(transitive)
+ Addedwrap-ansi@6.2.0(transitive)
+ Addedyoctocolors-cjs@2.1.2(transitive)
- Removedmove-file@^3.1.0
- Removed@anolilab/rc@1.1.2(transitive)
- Removed@visulima/fs@2.1.7(transitive)
- Removed@visulima/package@1.10.3(transitive)
- Removed@visulima/path@1.0.2(transitive)
- Removedhosted-git-info@7.0.2(transitive)
- Removedini@4.1.3(transitive)
- Removedjsonc-parser@3.3.1(transitive)
- Removedmove-file@3.1.0(transitive)
- Removednormalize-package-data@6.0.2(transitive)
- Removedpath-exists@5.0.0(transitive)
- Removedresolve-pkg-maps@1.0.0(transitive)
Updated@anolilab/rc@1.1.3
Updated@visulima/fs@^2.3.0
Updated@visulima/package@^3.1.5
Updated@visulima/path@^1.1.1
Updatedexeca@^9.4.1
Updatedini@^5.0.0
Updatedsemver@^7.6.3