Skip to content

change to new repo #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
- Add appropriate test coverage if applicable.

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

## Development Setup

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
fi
- run: npm run release:trigger
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<h1 align="center">vue-i18n-loader</h1>

<p align="center">
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
</p>

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

## :cd: Installation

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

## :rocket: Usage

Expand Down Expand Up @@ -168,7 +168,7 @@ module.exports = {
.resourceQuery(/blockType=i18n/)
.type('javascript/auto')
.use('i18n')
.loader('@kazupon/vue-i18n-loader')
.loader('@intlify/vue-i18n-loader')
}
}
```
Expand All @@ -183,7 +183,7 @@ module.exports = {
{
resourceQuery: /blockType=i18n/,
type: 'javascript/auto',
loader: '@kazupon/vue-i18n-loader',
loader: '@intlify/vue-i18n-loader',
},
]
}
Expand All @@ -201,7 +201,7 @@ module.exports = {
loader: 'vue',
options: {
loaders: {
i18n: '@kazupon/vue-i18n-loader'
i18n: '@intlify/vue-i18n-loader'
}
}
}]
Expand All @@ -210,10 +210,10 @@ module.exports = {
```

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

## :muscle: Contribution
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.
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.

## :copyright: License

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@kazupon/vue-i18n-loader",
"name": "@intlify/vue-i18n-loader",
"description": "vue-i18n loader for custom blocks",
"version": "0.5.0",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/kazupon/vue-i18n-loader/issues"
"url": "https://github.com/intlify/vue-i18n-loader/issues"
},
"changelog": {
"labels": {
Expand Down Expand Up @@ -61,7 +61,7 @@
"files": [
"lib"
],
"homepage": "https://github.com/kazupon/vue-i18n-loader#readme",
"homepage": "https://github.com/intlify/vue-i18n-loader#readme",
"keywords": [
"i18n",
"loader",
Expand All @@ -72,7 +72,7 @@
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kazupon/vue-i18n-loader.git"
"url": "git+https://github.com/intlify/vue-i18n-loader.git"
},
"scripts": {
"build": "tsc -p .",
Expand Down
Loading