Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: LeDDGroup/typescript-transform-paths
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 180163c567bde8870d7a8360d05e85ccae3902d3
Choose a base ref
..
head repository: LeDDGroup/typescript-transform-paths
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a99adeca5b773c1f5ad15585bf8abeac541a8faa
Choose a head ref
Showing with 1,100 additions and 1,097 deletions.
  1. +4 −10 .github/workflows/publish.yml
  2. +17 −0 CHANGELOG.md
  3. +6 −2 README.md
  4. +3 −3 package.json
  5. +1,070 −1,082 yarn.lock
14 changes: 4 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -5,6 +5,9 @@ on:
tags:
- v*.*.*

permissions:
id-token: write

jobs:
publish:
runs-on: ubuntu-latest
@@ -27,17 +30,8 @@ jobs:
- name: Build
run: yarn build

- name: Generate Release Body
run: npx extract-changelog-release > RELEASE_BODY.md

- name: Publish to NPM
run: yarn npm publish
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
bodyFile: "RELEASE_BODY.md"
token: ${{ secrets.GITHUB_TOKEN }}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,23 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## v3.4.10

[compare changes](https://github.com/LeDDGroup/typescript-transform-paths/compare/v3.4.9...v3.4.10)

### 🏡 Chore

- Update dependencies ([#226](https://github.com/LeDDGroup/typescript-transform-paths/pull/226))
- Replace standard-version with changelogen ([#227](https://github.com/LeDDGroup/typescript-transform-paths/pull/227))

### 🤖 CI

- Generate provenance on npm publish ([#229](https://github.com/LeDDGroup/typescript-transform-paths/pull/229))

### ❤️ Contributors

- Daniel Perez Alvarez <danielpza@protonmail.com>

### [3.4.9](https://github.com/LeDDGroup/typescript-transform-paths/compare/v3.4.8...v3.4.9) (2024-08-07)

### [3.4.8](https://github.com/LeDDGroup/typescript-transform-paths/compare/v3.4.7...v3.4.8) (2024-08-07)
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -200,9 +200,13 @@ import "normally-transformed"; // This will remain 'normally-transformed', even
## Project Guidelines for Contributors

- Package Manager: `yarn` (`yarn install`)
- Format before commit: `prettier` (`yarn format`)
- Commit messages: [Conventional Commit Specs](https://www.conventionalcommits.org/en/v1.0.0/)
- Format before commit: `prettier` (`yarn run format`)
- Releases: `standard-version` (`yarn run release`)
- Releases: `changelogen` (`yarn release`)

```shell
GH_TOKEN=$(gh auth token) yarn release
```

## Alternatives

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-transform-paths",
"version": "3.4.9",
"version": "3.4.10",
"description": "Transforms module resolution paths using TypeScript path mapping and/or custom paths",
"type": "commonjs",
"main": "./dist/index.js",
@@ -25,7 +25,7 @@
"compile": "tsc",
"build": "rm -rf dist && yarn run clean && yarn run compile",
"test": "yarn test/ install && yarn test/ add-package && yarn test/ test",
"release": "standard-version",
"release": "changelogen --release --push",
"--------------": "",
"format": "prettier --write .",
"clean": "rm -rf dist \"**/*.tsbuildinfo\" ./test/projects/nx/dist",
@@ -67,8 +67,8 @@
"@types/node": "^18.19.43",
"@types/ts-expose-internals": "npm:ts-expose-internals@4.9.5",
"@types/ts-node": "npm:ts-node@^10.9.2",
"changelogen": "^0.5.5",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"ts-patch": "^3.2.1",
"typescript": "^5.5.4"
},
Loading