Skip to content

Commit 9dbca77

Browse files
author
roman.vasilev
committed
ci: Removed github workflow files, fixed build
1 parent 7bc5327 commit 9dbca77

File tree

3 files changed

+3
-53
lines changed

3 files changed

+3
-53
lines changed

.github/main.workflow

Lines changed: 0 additions & 46 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33

44
### Features
55

6-
* First release ([1fc88b8](https://github.com/unlight/typescript-transform-unspec/commit/1fc88b8))
7-
* First release ([352d144](https://github.com/unlight/typescript-transform-unspec/commit/352d144))
6+
* First release

Taskfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
#!/bin/bash
22
PATH="$PWD/node_modules/.bin":$PATH
33

4-
prebuild() {
4+
build() {
55
rm -rf dist
66
cp -rf src dist && /usr/bin/find dist -name '*.spec.ts' | xargs rm -f
7-
cat tsconfig.json | jq 'del(.include, .compilerOptions.outDir)' > dist/tsconfig.json
7+
cat tsconfig.json | jq 'del(.include, .compilerOptions.outDir)' | jq -r '.compilerOptions.plugins[0].transform = "./index.ts"' > dist/tsconfig.json
88
cp README.md LICENSE package.json dist
9-
}
10-
11-
build() {
129
cd dist
1310
rm example.ts
1411
ttsc -p .

0 commit comments

Comments
 (0)