Skip to content

Commit 5eab2ec

Browse files
committed
Rename package
1 parent e1f05a3 commit 5eab2ec

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
# ⚡️ Serverless Plugin for S3 Sync
22

3-
[![npm](https://img.shields.io/npm/v/serverless-s3-sync.svg)](https://www.npmjs.com/package/serverless-s3-sync)
4-
[![CircleCI](https://img.shields.io/circleci/project/github/sbstjn/serverless-s3-sync/master.svg)](https://circleci.com/gh/sbstjn/serverless-s3-sync)
5-
[![license](https://img.shields.io/github/license/sbstjn/serverless-s3-sync.svg)](https://github.com/sbstjn/serverless-s3-sync/blob/master/LICENSE.md)
6-
[![Coveralls](https://img.shields.io/coveralls/sbstjn/serverless-s3-sync.svg)](https://coveralls.io/github/sbstjn/serverless-s3-sync)
3+
[![npm](https://img.shields.io/npm/v/serverless-s3bucket-sync.svg)](https://www.npmjs.com/package/serverless-s3bucket-sync)
4+
[![CircleCI](https://img.shields.io/circleci/project/github/sbstjn/serverless-s3bucket-sync/master.svg)](https://circleci.com/gh/sbstjn/serverless-s3bucket-sync)
5+
[![license](https://img.shields.io/github/license/sbstjn/serverless-s3bucket-sync.svg)](https://github.com/sbstjn/serverless-s3bucket-sync/blob/master/LICENSE.md)
6+
[![Coveralls](https://img.shields.io/coveralls/sbstjn/serverless-s3bucket-sync.svg)](https://coveralls.io/github/sbstjn/serverless-s3bucket-sync)
77

88
With this plugin for [serverless](https://serverless.com), you can sync local folders to S3 buckets after your service is deployed.
99

1010
## Usage
1111

12-
Add the [NPM package](https://www.npmjs.com/package/serverless-s3-sync) to your project:
12+
Add the [NPM package](https://www.npmjs.com/package/serverless-s3bucket-sync) to your project:
1313

1414
```bash
1515
# Via yarn
16-
$ yarn add serverless-s3-sync
16+
$ yarn add serverless-s3bucket-sync
1717

1818
# Via npm
19-
$ npm install serverless-s3-sync
19+
$ npm install serverless-s3bucket-sync
2020
```
2121

2222
Add the plugin to your `serverless.yml`:
2323

2424
```yaml
2525
plugins:
26-
- serverless-s3-sync
26+
- serverless-s3bucket-sync
2727
```
2828
2929
## Configuration

circle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ deployment:
1818
release:
1919
tag: /v[0-9]+(\.[0-9]+)*/
2020
commands:
21-
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/serverless-s3-sync/.npmrc
21+
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/serverless-s3bucket-sync/.npmrc
2222
- $(yarn bin)/dot-json package.json version ${CIRCLE_TAG:1}
2323
- npm publish

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "serverless-s3-sync",
2+
"name": "serverless-s3bucket-sync",
33
"description": "Serverless Plugin to sync local folders with an S3 bucket",
44
"version": "0.0.0",
55
"main": "src/plugin.js",
@@ -24,12 +24,12 @@
2424
"license": "MIT",
2525
"repository": {
2626
"type": "git",
27-
"url": "https://github.com/sbstjn/serverless-s3-sync.git"
27+
"url": "https://github.com/sbstjn/serverless-s3bucket-sync.git"
2828
},
2929
"bugs": {
30-
"url": "https://github.com/sbstjn/serverless-s3-sync/issues"
30+
"url": "https://github.com/sbstjn/serverless-s3bucket-sync/issues"
3131
},
32-
"homepage": "https://github.com/sbstjn/serverless-s3-sync",
32+
"homepage": "https://github.com/sbstjn/serverless-s3bucket-sync",
3333
"dependencies": {
3434
"s3": "^4.4.0"
3535
},

0 commit comments

Comments
 (0)