Skip to content
This repository was archived by the owner on Sep 12, 2023. It is now read-only.

Commit 1a80563

Browse files
committed
setup projects
1 parent 37296d7 commit 1a80563

File tree

7 files changed

+2858
-0
lines changed

7 files changed

+2858
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
coverage
22
node_modules
33
.DS_Store
4+
lib
45
*.log
56
*.swp
67
*~

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## v0.0.0 (2020-01-05)
2+
3+
I've borned in the world! :tada:
4+
5+
#### Committers: 1
6+
- kazuya kawaguchi ([@kazupon](https://github.com/kazupon))

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('hello rollup-plugin-vue-i18n')

package.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"name": "@intlify/rollup-plugin-vue-i18n",
3+
"description": "vue-i18n rollup plugin for custom blocks",
4+
"version": "0.0.0",
5+
"author": {
6+
"name": "kazuya kawaguchi",
7+
"email": "[email protected]"
8+
},
9+
"bugs": {
10+
"url": "https://github.com/intlify/rollup-plugin-vue-i18n/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+
}
25+
},
26+
"devDependencies": {
27+
"lerna-changelog": "^1.0.0",
28+
"shipjs": "0.13.1"
29+
},
30+
"engines": {
31+
"node": ">= 10"
32+
},
33+
"homepage": "https://github.com/intlify/rollup-plugin-vue-i18n#readme",
34+
"keywords": [
35+
"i18n",
36+
"plugin",
37+
"rollup",
38+
"vue",
39+
"vue-i18n"
40+
],
41+
"license": "MIT",
42+
"main": "index.js",
43+
"repository": {
44+
"type": "git",
45+
"url": "git+https://github.com/intlify/rollup-plugin-vue-i18n.git"
46+
},
47+
"scripts": {
48+
"release:prepare": "shipjs prepare",
49+
"release:trigger": "shipjs trigger",
50+
"test": "echo test"
51+
}
52+
}

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+
}

ship.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
publishCommand: ({ defaultCommand }) => `${defaultCommand} --access public`,
3+
mergeStrategy: { toSameBranch: ["master"] },
4+
buildCommand: () => null
5+
};

0 commit comments

Comments
 (0)