Skip to content

Commit 0365fd9

Browse files
committed
refactor: rename
1 parent 9daa021 commit 0365fd9

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

Diff for: .github/workflows/release-tag.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
with:
2121
tag_name: ${{ github.ref }}
2222
body: |
23-
Please refer to [CHANGELOG.md](https://github.com/posva/vue-lib/blob/master/CHANGELOG.md) for details.
23+
Please refer to [CHANGELOG.md](https://github.com/posva/vuefire/blob/master/CHANGELOG.md) for details.

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# vue-lib [![Build Status](https://badgen.net/circleci/github/posva/vue-lib/master)](https://circleci.com/gh/posva/vue-lib) [![npm package](https://badgen.net/npm/v/vue-lib)](https://www.npmjs.com/package/vue-lib) [![coverage](https://badgen.net/codecov/c/github/posva/vue-lib/master)](https://codecov.io/github/posva/vue-lib) [![thanks](https://badgen.net/badge/thanks/♥/pink)](https://github.com/posva/thanks)
1+
# vuefire [![Build Status](https://badgen.net/circleci/github/posva/vuefire/master)](https://circleci.com/gh/posva/vuefire) [![npm package](https://badgen.net/npm/v/vuefire)](https://www.npmjs.com/package/vuefire) [![coverage](https://badgen.net/codecov/c/github/posva/vuefire/master)](https://codecov.io/github/posva/vuefire) [![thanks](https://badgen.net/badge/thanks/♥/pink)](https://github.com/posva/thanks)
22

33
> Some awesome description
44
55
Demo (TODO link)
66

77
## Copying this project
88

9-
You can directly create a project from this template by using the [Use this template button](https://github.com/posva/vue-lib-boilerplate/generate) if you plan on hosting it on GitHub.
9+
You can directly create a project from this template by using the [Use this template button](https://github.com/posva/vuefire-boilerplate/generate) if you plan on hosting it on GitHub.
1010

1111
You can also use [degit](https://github.com/Rich-Harris/degit):
1212

@@ -19,13 +19,13 @@ degit posva/vue-ts-lib-boilerplate
1919
#### Rename the project
2020

2121
```sh
22-
sed -i '' 's/vue-lib/vue-global-events/g' README.md package.json .github/workflows/release-tag.yml size-checks/*
22+
sed -i '' 's/vuefire/vue-global-events/g' README.md package.json .github/workflows/release-tag.yml size-checks/*
2323
```
2424

2525
#### Circle CI
2626

2727
- Add the project: https://circleci.com/projects/gh/posva
28-
- Check _Build on forked pull requests_: https://circleci.com/gh/posva/vue-lib/edit#advanced-settings
28+
- Check _Build on forked pull requests_: https://circleci.com/gh/posva/vuefire/edit#advanced-settings
2929
- Check _Auto cancel redundant build_ (same place)
3030

3131
## Dependabot
@@ -44,9 +44,9 @@ Remove the section _Checklist_ before releasing.
4444
## Installation
4545

4646
```sh
47-
yarn add vue-lib
47+
yarn add vuefire
4848
# or
49-
npm install vue-lib
49+
npm install vuefire
5050
```
5151

5252
## Usage

Diff for: package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "vue-lib",
3-
"version": "0.0.0",
2+
"name": "vuefire",
3+
"version": "3.0.0",
44
"description": "Some awesome description",
5-
"main": "dist/vue-lib.cjs.js",
6-
"browser": "dist/vue-lib.esm.js",
7-
"unpkg": "dist/vue-lib.global.js",
8-
"jsdelivr": "dist/vue-lib.global.js",
9-
"module": "dist/vue-lib.esm-bundler.js",
10-
"types": "dist/vue-lib.d.ts",
5+
"main": "dist/vuefire.cjs.js",
6+
"browser": "dist/vuefire.esm.js",
7+
"unpkg": "dist/vuefire.global.js",
8+
"jsdelivr": "dist/vuefire.global.js",
9+
"module": "dist/vuefire.esm-bundler.js",
10+
"types": "dist/vuefire.d.ts",
1111
"sideEffects": false,
1212
"author": {
1313
"name": "Eduardo San Martin Morote",
@@ -27,7 +27,7 @@
2727
},
2828
"files": [
2929
"dist/*.js",
30-
"dist/vue-lib.d.ts",
30+
"dist/vuefire.d.ts",
3131
"LICENSE",
3232
"README.md"
3333
],
@@ -80,10 +80,10 @@
8080
},
8181
"repository": {
8282
"type": "git",
83-
"url": "git+https://github.com/posva/vue-lib.git"
83+
"url": "git+https://github.com/posva/vuefire.git"
8484
},
8585
"bugs": {
86-
"url": "https://github.com/posva/vue-lib/issues"
86+
"url": "https://github.com/posva/vuefire/issues"
8787
},
88-
"homepage": "https://github.com/posva/vue-lib#readme"
88+
"homepage": "https://github.com/posva/vuefire#readme"
8989
}

Diff for: scripts/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ then
3232

3333
# commit
3434
# use --tag next to publish to a different tag
35-
yarn publish --new-version "$VERSION" --no-commit-hooks --no-git-tag-version
35+
yarn publish --tag next --new-version "$VERSION" --no-commit-hooks --no-git-tag-version
3636

3737
# publish
3838
git push origin refs/tags/v$VERSION

Diff for: size-checks/basic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from '../dist/vue-lib.esm-bundler'
1+
export * from '../dist/vuefire.esm-bundler'

0 commit comments

Comments
 (0)