-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9505b3
commit 9dc19d6
Showing
1 changed file
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@poppinss/chokidar-ts", | ||
"version": "4.1.4", | ||
"version": "4.1.5", | ||
"description": "File watcher for TypeScript projects", | ||
"main": "build/index.js", | ||
"type": "module", | ||
|
@@ -19,17 +19,17 @@ | |
"scripts": { | ||
"pretest": "npm run lint", | ||
"test": "cross-env NODE_DEBUG=chokidar:ts c8 npm run quick:test", | ||
"lint": "eslint .", | ||
"format": "prettier --write .", | ||
"lint": "eslint .", | ||
"format": "prettier --write .", | ||
"clean": "del-cli build", | ||
"typecheck": "tsc --noEmit", | ||
"precompile": "npm run lint && npm run clean", | ||
"compile": "tsup-node && tsc --emitDeclarationOnly --declaration", | ||
"build": "npm run compile", | ||
"version": "npm run build", | ||
"prepublishOnly": "npm run build", | ||
"release": "release-it", | ||
"quick:test": "node --import=ts-node-maintained/register/esm --enable-source-maps bin/test.ts" | ||
"release": "release-it", | ||
"quick:test": "node --import=ts-node-maintained/register/esm --enable-source-maps bin/test.ts" | ||
}, | ||
"devDependencies": { | ||
"@adonisjs/eslint-config": "^2.0.0-beta.7", | ||
|
@@ -70,7 +70,7 @@ | |
"bugs": { | ||
"url": "https://github.com/poppinss/chokidar-ts/issues" | ||
}, | ||
"keywords": [ | ||
"keywords": [ | ||
"typescript", | ||
"tsc", | ||
"tsc-watch", | ||
|
@@ -79,10 +79,10 @@ | |
"author": "Harminder Virk <[email protected]>", | ||
"license": "MIT", | ||
"publishConfig": { | ||
"access": "public", | ||
"provenance": true | ||
}, | ||
"tsup": { | ||
"access": "public", | ||
"provenance": true | ||
}, | ||
"tsup": { | ||
"entry": [ | ||
"./index.ts", | ||
"./src/types.ts" | ||
|
@@ -94,30 +94,30 @@ | |
"sourcemap": false, | ||
"target": "esnext" | ||
}, | ||
"release-it": { | ||
"git": { | ||
"requireCleanWorkingDir": true, | ||
"requireUpstream": true, | ||
"commitMessage": "chore(release): ${version}", | ||
"tagAnnotation": "v${version}", | ||
"push": true, | ||
"tagName": "v${version}" | ||
}, | ||
"github": { | ||
"release": true | ||
}, | ||
"npm": { | ||
"publish": true, | ||
"skipChecks": true | ||
}, | ||
"plugins": { | ||
"@release-it/conventional-changelog": { | ||
"preset": { | ||
"name": "angular" | ||
} | ||
} | ||
} | ||
}, | ||
"release-it": { | ||
"git": { | ||
"requireCleanWorkingDir": true, | ||
"requireUpstream": true, | ||
"commitMessage": "chore(release): ${version}", | ||
"tagAnnotation": "v${version}", | ||
"push": true, | ||
"tagName": "v${version}" | ||
}, | ||
"github": { | ||
"release": true | ||
}, | ||
"npm": { | ||
"publish": true, | ||
"skipChecks": true | ||
}, | ||
"plugins": { | ||
"@release-it/conventional-changelog": { | ||
"preset": { | ||
"name": "angular" | ||
} | ||
} | ||
} | ||
}, | ||
"c8": { | ||
"reporter": [ | ||
"text", | ||
|