Skip to content

Commit

Permalink
Merge branch 'release/v1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartherbert committed Mar 2, 2024
2 parents 909230b + 6764e4f commit 2a08abf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ For each release, changes are grouped under these headings:

The following changes have been completed, and will be included in the next tagged release.

## v1.1.1

Released Saturday, 2nd March 2024.

### Fixes

* Added missing package.json entries for JS entry points (doh!)

## v1.1.0

Released Saturday, 2nd March 2024.
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "@safelytyped/node-pathapi",
"version": "1.1.0",
"version": "1.1.1",
"description": "The cross-platform bits of NodeJS's path module, as a protocol, for TypeScript.",
"repository": "github:SafelyTyped/ts-node-pathapi",
"main": "lib/v1/index.js",
"types": "lib/v1/index.d.ts",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"build": "npm run clean && tsc -b ./tsconfig-cjs.json ./tsconfig-esm.json ./tsconfig-types.json",
"lint": "npx eslint .",
Expand Down

0 comments on commit 2a08abf

Please sign in to comment.