Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prettier config file & bump dependencies to latest #10

Merged
merged 4 commits into from
May 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

job_defaults: &job_defaults
docker:
- image: flybondi/docker-nodejs-awscli:8.10
- image: flybondi/docker-nodejs-awscli:12.x

npm_config: &npm_config
name: Configure NPM user
Expand Down
5 changes: 4 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"tabWidth": 2,
"printWidth": 100,
"singleQuote": true,
"printWidth": 100
"arrowParens": "avoid",
"trailingComma": "none"
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ The configuration of the plugin is done by defining a `custom: rollup` object in
## Usage
### Automatic bundling
The normal Serverless deploy procedure will automatically bundle with rollup:
* Create the Serverless project with serverless create -t aws-nodejs
* Create the Serverless project with `serverless create -t aws-nodejs`
* Install Serverless Rollup as above
* Deploy with serverless deploy
* Deploy with `serverless deploy`

[flybondi]: https://www.flybondi.com
[rollup]: https://rollupjs.org
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.2.5",
"jest": "^25.5.2",
"lint-staged": "^10.2.0",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.7.5",
"rollup": "^2.7.6",
"serverless": "^1.35.1"
},
"husky": {
Expand All @@ -67,6 +67,6 @@
"bluebird": "^3.5.3",
"fs-extra": "^9.0.0",
"ramda": "^0.27.0",
"yup": "^0.28.4"
"yup": "^0.28.5"
}
}
Loading