Skip to content

Commit ad32d05

Browse files
authored
change to new repo (#69)
1 parent 96a8ad4 commit ad32d05

File tree

5 files changed

+501
-284
lines changed

5 files changed

+501
-284
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
- Add appropriate test coverage if applicable.
3636

3737
### Work Step Example
38-
- Fork the repository from [kazupon/vue-i18n-loader](https://github.com/kazupon/vue-i18n-loader) !
38+
- Fork the repository from [intlify/vue-i18n-loader](https://github.com/intlify/vue-i18n-loader) !
3939
- Create your topic branch from `master`: `git branch my-new-topic origin/master`
4040
- Add codes and pass tests !
4141
- Commit your changes: `git commit -am 'Add some topic'`
4242
- Push to the branch: `git push origin my-new-topic`
43-
- Submit a pull request to `master` branch of `kazupon/vue-i18n-loader` repository !
43+
- Submit a pull request to `master` branch of `intlify/vue-i18n-loader` repository !
4444

4545
## Development Setup
4646

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
fi
2525
- run: npm run release:trigger
2626
env:
27-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2828
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
2929
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<h1 align="center">vue-i18n-loader</h1>
44

55
<p align="center">
6-
<a href="https://circleci.com/gh/kazupon/vue-i18n-loader"><img src="https://circleci.com/gh/kazupon/vue-i18n-loader.svg?style=svg" alt="Build Status"></a>
7-
<a href="https://codecov.io/gh/kazupon/vue-i18n-loader"><img src="https://codecov.io/gh/kazupon/vue-i18n-loader/branch/dev/graph/badge.svg" alt="codecov"></a>
8-
<a href="https://www.npmjs.com/package/@kazupon/vue-i18n-loader"><img src="https://img.shields.io/npm/v/@kazupon/vue-i18n-loader.svg" alt="npm"></a>
9-
<a href="https://devtoken.rocks/package/@kazupon/vue-i18n-loader"><img src="https://badge.devtoken.rocks/@kazupon/vue-i18n-loader" alt="@kazupon/vue-i18n-loader Dev Token"/></a>
6+
<a href="https://circleci.com/gh/intlify/vue-i18n-loader"><img src="https://circleci.com/gh/intlify/vue-i18n-loader.svg?style=svg" alt="Build Status"></a>
7+
<a href="https://codecov.io/gh/intlify/vue-i18n-loader"><img src="https://codecov.io/gh/intlify/vue-i18n-loader/branch/dev/graph/badge.svg" alt="codecov"></a>
8+
<a href="https://www.npmjs.com/package/@intlify/vue-i18n-loader"><img src="https://img.shields.io/npm/v/@intlify/vue-i18n-loader.svg" alt="npm"></a>
9+
<a href="https://devtoken.rocks/package/@intlify/vue-i18n-loader"><img src="https://badge.devtoken.rocks/@intlify/vue-i18n-loader" alt="@intlify/vue-i18n-loader Dev Token"/></a>
1010
</p>
1111

1212
<p align="center">vue-i18n loader for custom blocks</p>
@@ -22,7 +22,7 @@ Intlify is a new i18n project kickoff by @kazupon. 😉
2222

2323
## :cd: Installation
2424

25-
$ npm i --save-dev @kazupon/vue-i18n-loader
25+
$ npm i --save-dev @intlify/vue-i18n-loader
2626

2727
## :rocket: Usage
2828

@@ -168,7 +168,7 @@ module.exports = {
168168
.resourceQuery(/blockType=i18n/)
169169
.type('javascript/auto')
170170
.use('i18n')
171-
.loader('@kazupon/vue-i18n-loader')
171+
.loader('@intlify/vue-i18n-loader')
172172
}
173173
}
174174
```
@@ -183,7 +183,7 @@ module.exports = {
183183
{
184184
resourceQuery: /blockType=i18n/,
185185
type: 'javascript/auto',
186-
loader: '@kazupon/vue-i18n-loader',
186+
loader: '@intlify/vue-i18n-loader',
187187
},
188188
]
189189
}
@@ -201,7 +201,7 @@ module.exports = {
201201
loader: 'vue',
202202
options: {
203203
loaders: {
204-
i18n: '@kazupon/vue-i18n-loader'
204+
i18n: '@intlify/vue-i18n-loader'
205205
}
206206
}
207207
}]
@@ -210,10 +210,10 @@ module.exports = {
210210
```
211211

212212
## :scroll: Changelog
213-
Details changes for each release are documented in the [CHANGELOG.md](https://github.com/kazupon/vue-i18n-loader/blob/master/CHANGELOG.md).
213+
Details changes for each release are documented in the [CHANGELOG.md](https://github.com/intlify/vue-i18n-loader/blob/master/CHANGELOG.md).
214214

215215
## :muscle: Contribution
216-
Please make sure to read the [Contributing Guide](https://github.com/kazupon/vue-i18n-loader/blob/master/.github/CONTRIBUTING.md) before making a pull request.
216+
Please make sure to read the [Contributing Guide](https://github.com/intlify/vue-i18n-loader/blob/master/.github/CONTRIBUTING.md) before making a pull request.
217217

218218
## :copyright: License
219219

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "@kazupon/vue-i18n-loader",
2+
"name": "@intlify/vue-i18n-loader",
33
"description": "vue-i18n loader for custom blocks",
44
"version": "0.5.0",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"
88
},
99
"bugs": {
10-
"url": "https://github.com/kazupon/vue-i18n-loader/issues"
10+
"url": "https://github.com/intlify/vue-i18n-loader/issues"
1111
},
1212
"changelog": {
1313
"labels": {
@@ -61,7 +61,7 @@
6161
"files": [
6262
"lib"
6363
],
64-
"homepage": "https://github.com/kazupon/vue-i18n-loader#readme",
64+
"homepage": "https://github.com/intlify/vue-i18n-loader#readme",
6565
"keywords": [
6666
"i18n",
6767
"loader",
@@ -72,7 +72,7 @@
7272
"main": "lib/index.js",
7373
"repository": {
7474
"type": "git",
75-
"url": "git+https://github.com/kazupon/vue-i18n-loader.git"
75+
"url": "git+https://github.com/intlify/vue-i18n-loader.git"
7676
},
7777
"scripts": {
7878
"build": "tsc -p .",

0 commit comments

Comments
 (0)