ftp-deploy update

solved caching issue
updated ftp-deploy library
This commit is contained in:
SamKirkland
2020-09-05 01:33:58 -05:00
parent c6e7e7c2db
commit 62b6382e92
3 changed files with 458 additions and 311 deletions

View File

@@ -5,7 +5,7 @@
"description": "Automate deploying websites and more with this GitHub action",
"main": "dist/main.js",
"scripts": {
"build": "ncc build src/main.ts",
"build": "ncc build src/main.ts --no-cache",
"lint": "eslint src/**/*.ts",
"all": "npm run build && npm run lint"
},
@@ -22,16 +22,16 @@
"author": "Sam Kirkland",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.4",
"@samkirkland/ftp-deploy": "^0.9.2",
"ts-node-dev": "^1.0.0-pre.56"
"@actions/core": "^1.2.5",
"@samkirkland/ftp-deploy": "^0.9.5",
"ts-node-dev": "^1.0.0-pre.62"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@typescript-eslint/parser": "^3.8.0",
"@typescript-eslint/parser": "^4.0.1",
"@vercel/ncc": "^0.24.0",
"eslint": "^7.6.0",
"eslint": "^7.8.1",
"js-yaml": "^3.14.0",
"typescript": "^3.9.7"
"typescript": "^4.0.2"
}
}
}