refactor: move source codes to lib directory, Close #30

This commit is contained in:
peaceiris 2019-09-18 07:24:59 +09:00
parent 25a3456032
commit dda41c42cc
4 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ inputs:
default: 'false'
runs:
using: 'node12'
main: 'index.js'
main: 'lib/index.js'
branding:
icon: 'package'
color: 'yellow'

View file

@ -2,9 +2,9 @@
"name": "hugo-action",
"version": "2.1.0",
"description": "Hugo setup action",
"main": "index.js",
"main": "lib/index.js",
"scripts": {
"lint": "eslint ./index.js ./get-latest-version.js",
"lint": "eslint ./lib/**/*",
"test": "jest",
"build": "npm prune --production"
},