Skip to content

Commit

Permalink
refactor: package info and rollup (#97)
Browse files Browse the repository at this point in the history
Co-authored-by: Almanov Nikita <131481562+nikkeyl@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and nikkeyl authored Aug 3, 2024
1 parent b070113 commit 32afdd6
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 35 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@
"url": "https://github.com/archoleat/semantic-release-define-config/issues"
},
"keywords": [
"archoleat-semantic-release-define-config",
"archoleat",
"config",
"configuration",
"define-config",
"plugin",
"semantic-release-config",
"semantic-release-define-config",
"semantic-release",
Expand Down Expand Up @@ -75,6 +77,7 @@
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.0.5",
Expand Down
71 changes: 37 additions & 34 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { resolve } from 'node:path';

import { defineConfig } from 'rollup';

import { dts } from 'rollup-plugin-dts';
Expand Down Expand Up @@ -26,7 +28,7 @@ export default defineConfig([
entries: [
{
find: '#types',
replacement: `${types}/${fileName}.d.ts`,
replacement: resolve(`${types}/${fileName}.d.ts`),
},
],
}),
Expand Down

0 comments on commit 32afdd6

Please sign in to comment.