Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeressian committed Jun 24, 2020
1 parent 16248c0 commit f4bc3c2
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 7 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
node_modules
dist
7 changes: 5 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ inputs:
apiKey:
required: true
runs:
using: 'node12'
main: 'index.js'
using: 'node14'
main: 'dist/index.js'
branding:
icon: 'upload-cloud'
color: 'orange'
18 changes: 18 additions & 0 deletions dist/index.js

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

1 change: 1 addition & 0 deletions dist/index.js.map

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

28 changes: 28 additions & 0 deletions dist/uploader.js

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

1 change: 1 addition & 0 deletions dist/uploader.js.map

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"name": "bunnycdn-storage-deploy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/test.js",
"test": "jest --watch"
"test": "jest --watch",
"build": "tsc"
},
"repository": {
"type": "git",
Expand Down
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@
"noImplicitAny": true,
"esModuleInterop": true,
"resolveJsonModule": true,
}
}
},
"include": [
"src"
]
}

0 comments on commit f4bc3c2

Please sign in to comment.