Skip to content

Commit f14aee2

Browse files
committed
refactor: rename
1 parent 7c0edf0 commit f14aee2

File tree

4 files changed

+20
-27
lines changed

4 files changed

+20
-27
lines changed

.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/vue-ts-lib/blob/master/CHANGELOG.md) for details.

README.md

+8-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# vue-lib [![Build Status](https://badgen.net/circleci/github/posva/vue-lib/main)](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/main)](https://codecov.io/github/posva/vue-lib) [![thanks](https://badgen.net/badge/thanks/♥/pink)](https://github.com/posva/thanks)
1+
# vue-ts-lib [![Build Status](https://github.com/posva/vue-ts-lib/workflows/test/badge.svg)](https://github.com/posva/vue-ts-lib/actions/workflows/test.yml) [![npm package](https://badgen.net/npm/v/vue-ts-lib)](https://www.npmjs.com/package/vue-ts-lib) [![coverage](https://badgen.net/codecov/c/github/posva/vue-ts-lib/main)](https://codecov.io/github/posva/vue-ts-lib) [![thanks](https://badgen.net/badge/thanks/♥/pink)](https://github.com/posva/thanks)
22

33
> Some awesome description
44
@@ -19,23 +19,16 @@ degit posva/vue-ts-lib
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/vue-ts-lib/vue-global-events/g' README.md package.json .github/workflows/release-tag.yml size-checks/*
2323
```
2424

25-
#### Circle CI
25+
#### Github CI
2626

27-
- 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
29-
- Check _Auto cancel redundant build_ (same place)
27+
- Added by default
3028

31-
## Dependabot
29+
## Renovate
3230

33-
- Activate it: https://docs.github.com/en/github/administering-a-repository/enabling-and-disabling-version-updates: add a `GH_TOKEN` secret in settings
34-
- Or use dependabot.com
35-
36-
## Github Settings
37-
38-
- Activate Sponsor section
31+
You must add the repository in [your settings](https://github.com/settings/installations/112211).
3932

4033
## Remove this section
4134

@@ -44,9 +37,9 @@ Remove the section _Checklist_ before releasing.
4437
## Installation
4538

4639
```sh
47-
yarn add vue-lib
40+
yarn add vue-ts-lib
4841
# or
49-
npm install vue-lib
42+
npm install vue-ts-lib
5043
```
5144

5245
## Usage

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "vue-lib",
2+
"name": "vue-ts-lib",
33
"version": "0.0.0",
44
"description": "Some awesome description",
5-
"main": "dist/vue-lib.cjs.js",
6-
"unpkg": "dist/vue-lib.global.js",
7-
"jsdelivr": "dist/vue-lib.global.js",
8-
"module": "dist/vue-lib.esm-bundler.js",
9-
"types": "dist/vue-lib.d.ts",
5+
"main": "dist/vue-ts-lib.cjs.js",
6+
"unpkg": "dist/vue-ts-lib.global.js",
7+
"jsdelivr": "dist/vue-ts-lib.global.js",
8+
"module": "dist/vue-ts-lib.esm-bundler.js",
9+
"types": "dist/vue-ts-lib.d.ts",
1010
"sideEffects": false,
1111
"author": {
1212
"name": "Eduardo San Martin Morote",
@@ -26,7 +26,7 @@
2626
},
2727
"files": [
2828
"dist/*.js",
29-
"dist/vue-lib.d.ts",
29+
"dist/vue-ts-lib.d.ts",
3030
"LICENSE",
3131
"README.md"
3232
],
@@ -79,10 +79,10 @@
7979
},
8080
"repository": {
8181
"type": "git",
82-
"url": "git+https://github.com/posva/vue-lib.git"
82+
"url": "git+https://github.com/posva/vue-ts-lib.git"
8383
},
8484
"bugs": {
85-
"url": "https://github.com/posva/vue-lib/issues"
85+
"url": "https://github.com/posva/vue-ts-lib/issues"
8686
},
87-
"homepage": "https://github.com/posva/vue-lib#readme"
87+
"homepage": "https://github.com/posva/vue-ts-lib#readme"
8888
}

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/vue-ts-lib.esm-bundler'

0 commit comments

Comments
 (0)