diff --git a/CHANGELOG.md b/CHANGELOG.md index c0b1523..d0f893a 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 1.0.3 - 2021-05-31 +### Fixed +* Fixed `dist/index.d.ts` to have complete type definitions + ## 1.0.2 - 2021-05-31 ### Changed * Administrivia diff --git a/package-lock.json b/package-lock.json index a49ef5a..34baf85 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "rollup-plugin-critical", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a962dde..155a24b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup-plugin-critical", - "version": "1.0.2", + "version": "1.0.3", "description": "Rollup plugin to generate critical CSS.", "author": "nystudio107", "license": "MIT", @@ -30,7 +30,7 @@ "build": "npm run build:cjs && npm run build:esm && npm run build:types", "build:cjs": "tsc -p config/cjs.json", "build:esm": "tsc -p config/esm.json", - "build:types": "cp src/@types/penthouse.d.ts dist/index.d.ts && cat src/@types/critical.d.ts >> dist/index.d.ts && cat src/@types/rollup-plugin-critical.d.ts >> dist/index.d.ts", + "build:types": "cp src/types.d.ts dist/index.d.ts", "check": "tsc -p config/base.json --noEmit", "lint": "eslint -p .", "test": "jest --passWithNoTests --coverage"