feat: actions for workflows

This commit is contained in:
iCrawl
2022-06-04 15:34:40 +02:00
parent 6b8ef20cb3
commit 271b1c8e5d
21 changed files with 598 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'tsup';
export default defineConfig({
clean: true,
dts: true,
entryPoints: ['src/index.ts', 'src/formatTag/index.ts'],
format: ['esm'],
minify: true,
skipNodeModulesBundle: false,
noExternal: ['@actions/core'],
sourcemap: true,
target: 'es2021',
});