Skip to content

Commit

Permalink
Prep for 4.0.0-rc3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezra Sharp committed Feb 17, 2020
1 parent 72de5ba commit 65c5a72
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 4 deletions.
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Misc
.DS_Store

# Logs
logs
*.log
Expand Down Expand Up @@ -60,5 +63,11 @@ typings/
# Compiled JS
dist

# Intellij files
.idea

# Workspace files
.vscode
.vscode

# Babel output files
*.js
5 changes: 4 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
src
.travis.yml
src
__tests__
__mocks__
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,10 @@ To specify credentials other than `default` in `~/.aws/credentials`, re-run `vue
Changelog
---

**4.0.0-rc3**

- Include recent PRs and bug fixes

**3.0.0**

- Added support for S3 static site hosting configuration and setup
Expand Down
15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-cli-plugin-s3-deploy",
"version": "4.0.0-rc2",
"version": "4.0.0-rc3",
"description": "A vue-cli plugin for deploying your built Vue app to an S3 bucket.",
"scripts": {
"test": "AWS_ACCESS_KEY_ID=access-key AWS_SECRET_ACCESS_KEY=secret-key jest --verbose src/test",
Expand Down Expand Up @@ -52,5 +52,18 @@
"devDependencies": {
"babel-jest": "^23.6.0",
"jest": "^23.6.0"
},
"files": [
"index.js",
"prompts.js",
"generator.js",
"deployer.js",
"configuration.js",
"bucket.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=8"
}
}
2 changes: 1 addition & 1 deletion src/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { snakeCase } from 'lodash';
import Joi from 'joi';
import { join } from 'path';

const VERSION = '4.0.0-rc2'
const VERSION = '4.0.0-rc3'

class Configuration {
constructor (options) {
Expand Down

0 comments on commit 65c5a72

Please sign in to comment.