1
0
mirror of https://github.com/kremalicious/astro-redirect-from.git synced 2024-10-22 03:12:43 +02:00

fix dist deletion, add changelog

This commit is contained in:
Matthias Kretschmann 2023-09-23 18:01:43 +01:00
parent 30230fe656
commit bd652d5ef6
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 13 additions and 2 deletions

11
CHANGELOG.md Normal file
View File

@ -0,0 +1,11 @@
### Changelog
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
#### 0.2.0
- prototype 🏗️ [`a98a07b`](https://github.com/kremalicious/astro-redirect-from/commit/a98a07be8c4fe031a911162384c7a2e6578319c4)
- add scripts, release process [`7cdd34a`](https://github.com/kremalicious/astro-redirect-from/commit/7cdd34a8057e4fa8347affc83eb51de8ffecb502)
- test tweaks [`fc9a840`](https://github.com/kremalicious/astro-redirect-from/commit/fc9a840094779b6a13d4481c8645f6f16b27090c)

View File

@ -9,8 +9,8 @@
"main": "./dist/index.js",
"types": "./dist/@types/index.d.ts",
"scripts": {
"build": "rm -r ./dist && tsc",
"start": "rm -r ./dist && tsc --watch",
"build": "rm -rf ./dist && tsc",
"start": "rm -rf ./dist && tsc --watch",
"test": "npm run lint && npm run typecheck && npm run build",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",