Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .codecov.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
coverage/
lib/
dist/
node_modules/
*.log
.yarn/*
Expand Down
Empty file removed .npmignore
Empty file.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "13.0.4",
"description": "A parser that converts Angular source code into an ESTree-compatible form",
"keywords": [],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/prettier/angular-estree-parser",
"homepage": "https://github.com/prettier/angular-estree-parser#readme",
"author": {
Expand All @@ -14,7 +14,6 @@
},
"license": "MIT",
"scripts": {
"clean": "del-cli ./lib",
"prepare": "yarn run build",
"test": "vitest",
"lint": "run-p \"lint:*\"",
Expand All @@ -23,7 +22,7 @@
"fix": "run-s \"fix:*\"",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"build": "yarn clean && tsc -p ./tsconfig.build.json",
"build": "tsdown",
"release": "release-it"
},
"devDependencies": {
Expand All @@ -33,7 +32,6 @@
"@babel/types": "8.0.0-beta.2",
"@types/node": "24.7.1",
"@vitest/coverage-v8": "3.2.4",
"del-cli": "7.0.0",
"eslint": "9.37.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-simple-import-sort": "12.1.1",
Expand All @@ -44,6 +42,7 @@
"npm-run-all2": "8.0.4",
"prettier": "3.6.2",
"release-it": "19.0.5",
"tsdown": "0.15.6",
"typescript": "5.9.3",
"typescript-eslint": "8.46.0",
"vitest": "3.2.4"
Expand All @@ -55,7 +54,7 @@
"node": ">= 20"
},
"files": [
"lib"
"dist"
],
"type": "module",
"publishConfig": {
Expand Down
14 changes: 0 additions & 14 deletions tsconfig.build.json

This file was deleted.

Loading