Skip to content

Commit

Permalink
chore: update dependencies, fix mispellings, remove vscode directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Sep 24, 2020
1 parent 13fad51 commit 6595627
Show file tree
Hide file tree
Showing 13 changed files with 410 additions and 185 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ See [here](https://yarnpkg.com/en/docs/install#debian-stable) for instructions o

`lerna` is used to managed the project as a monorepo - where each action is packaged and managed individually, and some packages are internal modules shared across the actions.

To install lernal locally on your machine, it is recommended to install globally via npm or yarn:
To install locally on your machine, it is recommended to install globally via npm or yarn:

```bash
$ npm install lerna --globally
Expand All @@ -64,7 +64,7 @@ Once you have installed both `yarn` and `lerna`, you can install the project dep
$ yarn
```

Note: You may come across the comand sequence `lerna bootstrap` in the `lerna` documentation; this is equivalent to running `yarn` where both commands will pull down the necesary dependencies for the project and its packages.
Note: You may come across the command sequence `lerna bootstrap` in the `lerna` documentation; this is equivalent to running `yarn` where both commands will pull down the necessary dependencies for the project and its packages.

## Contributing

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,5 @@ typings/

# TernJS port file
.tern-port

.vscode
20 changes: 0 additions & 20 deletions .vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2020 Clowd Haus, LLC.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
3 changes: 3 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ['@commitlint/config-conventional']
};
48 changes: 30 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,36 @@
"packages/*"
],
"scripts": {
"test": "lerna run test",
"compile": "lerna run build && lerna run compile",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts}' --quiet --fix",
"release": "lerna version --conventional-commits --yes",
"diff": "lerna diff",
"commit": "npx git-cz"
"build": "lerna run build && lerna run compile",
"lint": "eslint 'actions/**/*.{js,ts}' --fix",
"release": "lerna version --conventional-commits --create-release github --yes"
},
"dependencies": {
"@actions/core": "^1.2.5"
"@actions/core": "^1.2.6"
},
"devDependencies": {
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@vercel/ncc": "^0.24.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"@vercel/ncc": "^0.24.1",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prettier-plugin-package": "^1.0.0",
"typescript": "^4.0.3"
},
"command": {
"version": {
"allowBranch": "master"
}
},
"config": {
"commitizen": {
Expand All @@ -57,13 +62,20 @@
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-rebase": "HUSKY_SKIP_HOOKS=1"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
"*.(js|ts)": [
"eslint --fix"
],
"*.md": [
"prettier --single-quote --write"
],
"*package.json": [
"prettier --write --plugin=prettier-plugin-package"
]
}
}
2 changes: 1 addition & 1 deletion packages/awscli/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cloudfront_invalidate/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cloudfront_invalidate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Initiate CloudFront cache invalidation",
"main": "index.ts",
"dependencies": {
"aws-sdk": "^2.751.0"
"aws-sdk": "^2.759.0"
},
"scripts": {
"compile": "ncc build -m",
Expand Down
2 changes: 1 addition & 1 deletion packages/iam_access_credentials/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/iam_access_credentials/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Configure AWS IAM access credentials for use with the AWS CLI and AWS SDKs",
"main": "index.ts",
"dependencies": {
"aws-sdk": "^2.751.0"
"aws-sdk": "^2.759.0"
},
"scripts": {
"compile": "ncc build -m",
Expand Down
2 changes: 1 addition & 1 deletion packages/s3_sync/dist/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit 6595627

Please sign in to comment.