Skip to content

Commit 930a535

Browse files
committed
setup for new orgnaization
1 parent 3ae044c commit 930a535

File tree

6 files changed

+62
-61
lines changed

6 files changed

+62
-61
lines changed

.github/CONTRIBUTING.md

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

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

5151
## Development Setup
5252

.mergify.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# :globe_with_meridians: vue-i18n-extensions
22

3-
[![CircleCI](https://circleci.com/gh/kazupon/vue-i18n-extensions/tree/dev.svg?style=svg)](https://circleci.com/gh/kazupon/vue-i18n-extensions/tree/dev)
3+
[![CircleCI](https://circleci.com/gh/intlify/vue-i18n-extensions/tree/dev.svg?style=svg)](https://circleci.com/gh/intlify/vue-i18n-extensions/tree/dev)
44
[![npm](https://img.shields.io/npm/v/vue-i18n-extensions.svg)](https://www.npmjs.com/package/vue-i18n-extensions)
55
[![vue-i18n-extensions Dev Token](https://badge.devtoken.rocks/vue-i18n-extensions)](https://devtoken.rocks/package/vue-i18n-extensions)
66

@@ -22,7 +22,7 @@ Intlify is a new i18n project kickoff by @kazupon. 😉
2222
## :cd: Installation
2323

2424
```sh
25-
$ npm i --save-dev vue-i18n-extensions
25+
$ npm i --save-dev @intlify/vue-i18n-extensions
2626
```
2727

2828
## :rocket: Extensions
@@ -36,7 +36,7 @@ The following example:
3636
import Vue from 'vue'
3737
import VueI18n from 'vue-i18n'
3838
import { createRenderer } from 'vue-server-renderer'
39-
import { directive as t } from 'vue-i18n-extensions'
39+
import { directive as t } from '@intlify/vue-i18n-extensions'
4040

4141
Vue.use(VueI18n)
4242

@@ -82,7 +82,7 @@ The following example that use `compile` function of `vue-template-compiler`:
8282
import Vue from 'vue'
8383
import VueI18n from 'vue-i18n'
8484
import { compile } from 'vue-template-compiler'
85-
import { module } from 'vue-i18n-extensions'
85+
import { module } from '@intlify/vue-i18n-extensions'
8686

8787
Vue.use(VueI18n)
8888

@@ -112,7 +112,7 @@ The following configration example of `vue-loader`:
112112
```javascript
113113
const Vue = require('vue')
114114
const VueI18n = require('vue-i18n')
115-
const i18nExtensions = require('vue-i18n-extensions')
115+
const i18nExtensions = require('@intlify/vue-i18n-extensions')
116116
const messages = require('./locales.json')
117117

118118
Vue.use(VueI18n)
@@ -138,15 +138,15 @@ module.exports = {
138138
```
139139

140140
## :scroll: Changelog
141-
Details changes for each release are documented in the [CHANGELOG.md](https://github.com/kazupon/vue-i18n-extensions/blob/dev/CHANGELOG.md).
141+
Details changes for each release are documented in the [CHANGELOG.md](https://github.com/intlify/vue-i18n-extensions/blob/dev/CHANGELOG.md).
142142

143143

144144
## :exclamation: Issues
145-
Please make sure to read the [Issue Reporting Checklist](https://github.com/kazupon/vue-i18n-extensions/blob/dev/CONTRIBUTING.md#issue-reporting-guidelines) before opening an issue. Issues not conforming to the guidelines may be closed immediately.
145+
Please make sure to read the [Issue Reporting Checklist](https://github.com/intlify/vue-i18n-extensions/blob/dev/CONTRIBUTING.md#issue-reporting-guidelines) before opening an issue. Issues not conforming to the guidelines may be closed immediately.
146146

147147

148148
## :muscle: Contribution
149-
Please make sure to read the [Contributing Guide](https://github.com/kazupon/vue-i18n-extensions/blob/dev/CONTRIBUTING.md) before making a pull request.
149+
Please make sure to read the [Contributing Guide](https://github.com/intlify/vue-i18n-extensions/blob/dev/CONTRIBUTING.md) before making a pull request.
150150

151151
## :copyright: License
152152

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
{
2-
"name": "vue-i18n-extensions",
2+
"name": "@intlify/vue-i18n-extensions",
33
"description": "vue-i18n extensions",
44
"version": "0.2.1",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"
88
},
99
"bugs": {
10-
"url": "https://github.com/kazupon/vue-i18n-extensions/issues"
10+
"url": "https://github.com/intlify/vue-i18n-extensions/issues"
11+
},
12+
"changelog": {
13+
"labels": {
14+
"Type: Feature": ":star: Features",
15+
"Type: Bug": ":bug: Bug Fixes",
16+
"Type: Security": ":lock: Security Fixes",
17+
"Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
18+
"Type: Improvement": ":zap: Improvement Features",
19+
"Type: Breaking": ":boom: Breaking Change",
20+
"Type: Deprecated": ":warning: Deprecated Features",
21+
"Type: I18n": ":globe_with_meridians: Internationalization",
22+
"Type: A11y": ":wheelchair: Accessibility",
23+
"Type: Documentation": ":pencil: Documentation"
24+
}
1125
},
1226
"dependencies": {},
1327
"devDependencies": {
@@ -32,7 +46,7 @@
3246
"files": [
3347
"src"
3448
],
35-
"homepage": "https://github.com/kazupon/vue-i18n-extensions#readme",
49+
"homepage": "https://github.com/intlify/vue-i18n-extensions#readme",
3650
"jest": {
3751
"moduleFileExtensions": [
3852
"js",
@@ -58,7 +72,7 @@
5872
"main": "src/index.js",
5973
"repository": {
6074
"type": "git",
61-
"url": "git+https://github.com/kazupon/vue-i18n-extensions.git"
75+
"url": "git+https://github.com/intlify/vue-i18n-extensions.git"
6276
},
6377
"scripts": {
6478
"clean": "rm -rf ./coverage",
@@ -68,19 +82,5 @@
6882
"test": "npm run lint && npm run test:cover",
6983
"test:cover": "jest --coverage -u",
7084
"test:unit": "jest -u"
71-
},
72-
"changelog": {
73-
"labels": {
74-
"Type: Feature": ":star: Features",
75-
"Type: Bug": ":bug: Bug Fixes",
76-
"Type: Security": ":lock: Security Fixes",
77-
"Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
78-
"Type: Improvement": ":zap: Improvement Features",
79-
"Type: Breaking": ":boom: Breaking Change",
80-
"Type: Deprecated": ":warning: Deprecated Features",
81-
"Type: I18n": ":globe_with_meridians: Internationalization",
82-
"Type: A11y": ":wheelchair: Accessibility",
83-
"Type: Documentation": ":pencil: Documentation"
84-
}
8585
}
86-
}
86+
}

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": [
3+
"config:base",
4+
":preserveSemverRanges"
5+
],
6+
"labels": ["Type: Dependency"],
7+
"automerge": true,
8+
"major": {
9+
"automerge": false
10+
}
11+
}

yarn.lock

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@
182182
universal-user-agent "^4.0.0"
183183

184184
"@octokit/types@^2.0.0":
185-
version "2.0.2"
186-
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.0.2.tgz#0888497f5a664e28b0449731d5e88e19b2a74f90"
187-
integrity sha512-StASIL2lgT3TRjxv17z9pAqbnI7HGu9DrJlg3sEBFfCLaMEqp+O3IQPUF6EZtQ4xkAu2ml6kMBBCtGxjvmtmuQ==
185+
version "2.1.0"
186+
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.1.0.tgz#fe3ea39ed7d20ec06954a9314d4f17aa93e033a3"
187+
integrity sha512-n1GUYFgKm5glcy0E+U5jnqAFY2p04rnK4A0YhuM70C7Vm9Vyx+xYwd/WOTEr8nUJcbPSR/XL+/26+rirY6jJQA==
188188
dependencies:
189189
"@types/node" ">= 8"
190190

@@ -249,17 +249,17 @@
249249
integrity sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==
250250

251251
"@vue/server-test-utils@^1.0.0-beta.29":
252-
version "1.0.0-beta.30"
253-
resolved "https://registry.yarnpkg.com/@vue/server-test-utils/-/server-test-utils-1.0.0-beta.30.tgz#960a6383de81ba5ff763bdd6e961b9443e98fa82"
254-
integrity sha512-H5vABB3uWbr+JlpN9pA7OpepYsHSmocbIHJQA00Xz0s4Qqmg4jX93GArO4KVC7zs/QS12w3mXfmMlYV8w7DwEg==
252+
version "1.0.0-beta.31"
253+
resolved "https://registry.yarnpkg.com/@vue/server-test-utils/-/server-test-utils-1.0.0-beta.31.tgz#d91960ca2e3521d518c95d9a103b9011de967704"
254+
integrity sha512-9X1wIwZNaNTts3pd+v7wgCycF9So2DAvagRTCwAqw/IcKTLF/ZL40jGL2DZKIiwSDGgaq4Teq/9IJ6UncG9C6Q==
255255
dependencies:
256256
"@types/cheerio" "^0.22.10"
257257
cheerio "^1.0.0-rc.2"
258258

259259
"@vue/test-utils@^1.0.0-beta.29":
260-
version "1.0.0-beta.30"
261-
resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.0-beta.30.tgz#d5f26d1e2411fdb7fa7fdedb61b4b4ea4194c49d"
262-
integrity sha512-Wyvcha9fNk8+kzTDwb3xWGjPkCPzHSYSwKP6MplrPTG/auhqoad7JqUEceZLc6u7AU4km2pPQ8/m9s0RgCZ0NA==
260+
version "1.0.0-beta.31"
261+
resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-1.0.0-beta.31.tgz#580d6e45f07452e497d69807d80986e713949b73"
262+
integrity sha512-IlhSx5hyEVnbvDZ3P98R1jNmy88QAd/y66Upn4EcvxSD5D4hwOutl3dIdfmSTSXs4b9DIMDnEVjX7t00cvOnvg==
263263
dependencies:
264264
dom-event-types "^1.0.0"
265265
lodash "^4.17.15"
@@ -1865,9 +1865,9 @@ error-ex@^1.2.0, error-ex@^1.3.1:
18651865
is-arrayish "^0.2.1"
18661866

18671867
es-abstract@^1.17.0-next.1, es-abstract@^1.17.2:
1868-
version "1.17.2"
1869-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.2.tgz#965b10af56597b631da15872c17a405e86c1fd46"
1870-
integrity sha512-YoKuru3Lyoy7yVTBSH2j7UxTqe/je3dWAruC0sHvZX1GNd5zX8SSLvQqEgO9b3Ex8IW+goFI9arEEsFIbulhOw==
1868+
version "1.17.3"
1869+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.3.tgz#d921ff5889a3664921094bb13aaf0dfd11818578"
1870+
integrity sha512-AwiVPKf3sKGMoWtFw0J7Y4MTZ4Iek67k4COWOwHqS8B9TOZ71DCfcoBmdamy8Y6mj4MDz0+VNUpC2HKHFHA3pg==
18711871
dependencies:
18721872
es-to-primitive "^1.2.1"
18731873
function-bind "^1.1.1"
@@ -2387,9 +2387,9 @@ fs-minipass@^1.2.5:
23872387
minipass "^2.6.0"
23882388

23892389
fs-minipass@^2.0.0:
2390-
version "2.0.0"
2391-
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.0.0.tgz#a6415edab02fae4b9e9230bc87ee2e4472003cd1"
2392-
integrity sha512-40Qz+LFXmd9tzYVnnBmZvFfvAADfUA14TXPK1s7IfElJTIZ97rA8w4Kin7Wt5JBrC3ShnnFJO/5vPjPEeJIq9A==
2390+
version "2.0.1"
2391+
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.0.1.tgz#3e5bcc0f7b94507b0390e2c7d4a2516ca16a38d2"
2392+
integrity sha512-22x6v7ceMyTfG8e4Y0YeudTuDNZEIR9pQoEVu1r5e6nLuMAbmrkTXlHADEHsdk2SHYM6opcRnKUbqB9bZ94D3g==
23932393
dependencies:
23942394
minipass "^3.0.0"
23952395

@@ -2587,7 +2587,7 @@ growly@^1.3.0:
25872587
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
25882588
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
25892589

2590-
handlebars@^4.0.3, handlebars@^4.4.0, handlebars@^4.5.3:
2590+
handlebars@^4.0.3, handlebars@^4.4.0:
25912591
version "4.7.2"
25922592
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.2.tgz#01127b3840156a0927058779482031afe0e730d7"
25932593
integrity sha512-4PwqDL2laXtTWZghzzCtunQUTLbo31pcCJrd/B/9JP8XbhVzpS5ZXuKqlOzsd1rtcaLo4KqAn8nl8mkknS4MHw==
@@ -2700,11 +2700,9 @@ header-case@^2.0.3:
27002700
tslib "^1.10.0"
27012701

27022702
highlight.js@^9.6.0:
2703-
version "9.17.1"
2704-
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.17.1.tgz#14a4eded23fd314b05886758bb906e39dd627f9a"
2705-
integrity sha512-TA2/doAur5Ol8+iM3Ov7qy3jYcr/QiJ2eDTdRF4dfbjG7AaaB99J5G+zSl11ljbl6cIcahgPY6SKb3sC3EJ0fw==
2706-
dependencies:
2707-
handlebars "^4.5.3"
2703+
version "9.18.0"
2704+
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.0.tgz#6b1763cfcd53744313bd3f31f1210f7beb962c79"
2705+
integrity sha512-A97kI1KAUzKoAiEoaGcf2O9YPS8nbDTCRFokaaeBhnqjQTvbAuAJrQMm21zw8s8xzaMtCQBtgbyGXLGxdxQyqQ==
27082706

27092707
home-or-tmp@^2.0.0:
27102708
version "2.0.0"
@@ -6198,9 +6196,9 @@ typedarray@^0.0.6:
61986196
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
61996197

62006198
uglify-js@^3.1.4:
6201-
version "3.7.5"
6202-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.5.tgz#278c7c24927ac5a32d3336fc68fd4ae1177a486a"
6203-
integrity sha512-GFZ3EXRptKGvb/C1Sq6nO1iI7AGcjyqmIyOw0DrD0675e+NNbGO72xmMM2iEBdFbxaTLo70NbjM/Wy54uZIlsg==
6199+
version "3.7.6"
6200+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.6.tgz#0783daa867d4bc962a37cc92f67f6e3238c47485"
6201+
integrity sha512-yYqjArOYSxvqeeiYH2VGjZOqq6SVmhxzaPjJC1W2F9e+bqvFL9QXQ2osQuKUFjM2hGjKG2YclQnRKWQSt/nOTQ==
62046202
dependencies:
62056203
commander "~2.20.3"
62066204
source-map "~0.6.1"

0 commit comments

Comments
 (0)