Skip to content

Commit 36bef21

Browse files
committed
Deno!!
1 parent ecf8fff commit 36bef21

File tree

3 files changed

+8
-1116
lines changed

3 files changed

+8
-1116
lines changed

.github/workflows/deployment.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
- name: Tricky TSC Safety
3232
run: |
3333
sed -i 's/fetchApi(): FetchAPI/fetchApi(): FetchAPI | undefined/' src/runtime.ts
34+
- name: Make Deno Friendly
35+
run: |
36+
for file in `find src -type f -name "index.ts"`; do
37+
cp $file `echo $file | sed s/index/mod/`
38+
done
3439
- name: Create Pull Request
3540
uses: peter-evans/create-pull-request@v3
3641
with:
@@ -39,4 +44,4 @@ jobs:
3944
body: |
4045
This Pull Request will update the typescript sources.
4146
It is automatically created by GitHub Actions.
42-
labels: automated
47+
labels: follow-up

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,5 @@ dist
123123
.pnp.*
124124

125125
# End of https://www.toptal.com/developers/gitignore/api/node
126-
unofficial-documentation
126+
unofficial-documentation
127+
package-lock.json

0 commit comments

Comments
 (0)