Skip to content

Commit 65c5a72

Browse files
author
Ezra Sharp
committed
Prep for 4.0.0-rc3 release.
1 parent 72de5ba commit 65c5a72

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
lines changed

.gitignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Misc
2+
.DS_Store
3+
14
# Logs
25
logs
36
*.log
@@ -60,5 +63,11 @@ typings/
6063
# Compiled JS
6164
dist
6265

66+
# Intellij files
67+
.idea
68+
6369
# Workspace files
64-
.vscode
70+
.vscode
71+
72+
# Babel output files
73+
*.js

.npmignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
src
1+
.travis.yml
2+
src
3+
__tests__
4+
__mocks__

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,10 @@ To specify credentials other than `default` in `~/.aws/credentials`, re-run `vue
148148
Changelog
149149
---
150150

151+
**4.0.0-rc3**
152+
153+
- Include recent PRs and bug fixes
154+
151155
**3.0.0**
152156

153157
- Added support for S3 static site hosting configuration and setup

package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-cli-plugin-s3-deploy",
3-
"version": "4.0.0-rc2",
3+
"version": "4.0.0-rc3",
44
"description": "A vue-cli plugin for deploying your built Vue app to an S3 bucket.",
55
"scripts": {
66
"test": "AWS_ACCESS_KEY_ID=access-key AWS_SECRET_ACCESS_KEY=secret-key jest --verbose src/test",
@@ -52,5 +52,18 @@
5252
"devDependencies": {
5353
"babel-jest": "^23.6.0",
5454
"jest": "^23.6.0"
55+
},
56+
"files": [
57+
"index.js",
58+
"prompts.js",
59+
"generator.js",
60+
"deployer.js",
61+
"configuration.js",
62+
"bucket.js",
63+
"README.md",
64+
"LICENSE"
65+
],
66+
"engines": {
67+
"node": ">=8"
5568
}
5669
}

src/configuration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { snakeCase } from 'lodash';
22
import Joi from 'joi';
33
import { join } from 'path';
44

5-
const VERSION = '4.0.0-rc2'
5+
const VERSION = '4.0.0-rc3'
66

77
class Configuration {
88
constructor (options) {

0 commit comments

Comments
 (0)