Skip to content

Commit 899acde

Browse files
committed
chore: update project name
1 parent 7644c10 commit 899acde

File tree

11 files changed

+71
-5947
lines changed

11 files changed

+71
-5947
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ yarn-error.log
1111
*.ntvs*
1212
*.njsproj
1313
*.sln
14+
15+
yarn.lock

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# vue-antd-issue-helper
1+
# issue-helper
22

33
> Vue antd issue helper
44

build/deploy_to_gh_pages.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ git config user.name "[email protected]"
66
git config user.email "Travis"
77
git add .
88
git commit -m "Update docs"
9-
git push -f "https://${GH_TOKEN}@github.com/vueComponent/vue-antd-issue-helper.git" master:gh-pages
9+
git push -f "https://${GH_TOKEN}@github.com/vueComponent/issue-helper.git" master:gh-pages
1010

1111
echo "Done updating gh-pages\n"
1212

package.json

+49-49
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
11
{
2-
"name": "vue-issue-helper",
3-
"description": "Vue issue helper",
4-
"version": "2.0.0",
5-
"author": "Evan You <[email protected]>",
6-
"private": true,
7-
"scripts": {
8-
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot",
9-
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
10-
},
11-
"dependencies": {
12-
"@vue/ui": "^0.1.5",
13-
"babel-polyfill": "^6.26.0",
14-
"babel-runtime": "^6.26.0",
15-
"compare-versions": "^3.3.0",
16-
"copy-to-clipboard": "^3.0.8",
17-
"marked": "^0.3.6",
18-
"qs": "^6.5.1",
19-
"remarkable": "^1.7.1",
20-
"vue": "^2.5.13",
21-
"vue-antd-ui": "^0.6.3",
22-
"vue-resource": "^1.3.4"
23-
},
24-
"devDependencies": {
25-
"babel-core": "^6.26.0",
26-
"babel-helper-vue-jsx-merge-props": "^2.0.3",
27-
"babel-loader": "^7.1.2",
28-
"babel-plugin-syntax-jsx": "^6.18.0",
29-
"babel-plugin-transform-runtime": "^6.23.0",
30-
"babel-plugin-transform-vue-jsx": "^3.7.0",
31-
"babel-preset-env": "^1.7.0",
32-
"babel-preset-stage-0": "^6.24.1",
33-
"babel-preset-stage-1": "^6.24.1",
34-
"babel-preset-stage-2": "^6.24.1",
35-
"cross-env": "^5.0.5",
36-
"css-loader": "^0.28.7",
37-
"file-loader": "^1.1.4",
38-
"html-webpack-plugin": "^2.30.1",
39-
"less": "^3.0.1",
40-
"less-loader": "^4.1.0",
41-
"raw-loader": "^1.0.0-beta.0",
42-
"style-loader": "^0.20.2",
43-
"stylus": "^0.54.5",
44-
"stylus-loader": "^3.0.2",
45-
"vue-loader": "^14.1.1",
46-
"vue-template-compiler": "^2.5.13",
47-
"webpack": "^3.6.0",
48-
"webpack-dev-server": "^2.9.1"
49-
}
50-
}
2+
"name": "vue-issue-helper",
3+
"description": "Vue issue helper",
4+
"version": "2.0.0",
5+
"author": "Evan You <[email protected]>",
6+
"private": true,
7+
"scripts": {
8+
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot",
9+
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
10+
},
11+
"dependencies": {
12+
"@vue/ui": "^0.1.5",
13+
"babel-polyfill": "^6.26.0",
14+
"babel-runtime": "^6.26.0",
15+
"compare-versions": "^3.3.0",
16+
"copy-to-clipboard": "^3.0.8",
17+
"marked": "^0.3.6",
18+
"qs": "^6.5.1",
19+
"remarkable": "^1.7.1",
20+
"vue": "^2.5.13",
21+
"ant-design-vue": "^1.0.2",
22+
"vue-resource": "^1.3.4"
23+
},
24+
"devDependencies": {
25+
"babel-core": "^6.26.0",
26+
"babel-helper-vue-jsx-merge-props": "^2.0.3",
27+
"babel-loader": "^7.1.2",
28+
"babel-plugin-syntax-jsx": "^6.18.0",
29+
"babel-plugin-transform-runtime": "^6.23.0",
30+
"babel-plugin-transform-vue-jsx": "^3.7.0",
31+
"babel-preset-env": "^1.7.0",
32+
"babel-preset-stage-0": "^6.24.1",
33+
"babel-preset-stage-1": "^6.24.1",
34+
"babel-preset-stage-2": "^6.24.1",
35+
"cross-env": "^5.0.5",
36+
"css-loader": "^0.28.7",
37+
"file-loader": "^1.1.4",
38+
"html-webpack-plugin": "^2.30.1",
39+
"less": "^3.0.1",
40+
"less-loader": "^4.1.0",
41+
"raw-loader": "^1.0.0-beta.0",
42+
"style-loader": "^0.20.2",
43+
"stylus": "^0.54.5",
44+
"stylus-loader": "^3.0.2",
45+
"vue-loader": "^14.1.1",
46+
"vue-template-compiler": "^2.5.13",
47+
"webpack": "^3.6.0",
48+
"webpack-dev-server": "^2.9.1"
49+
}
50+
}

src/components/App.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<footer class="ant-layout-footer">
99
<div class="ant-layout-footer" style="text-align: center;">
1010
Inspired by <a href="https://new-issue.vuejs.org/" target="_blank">Vue Issue Helper</a>
11-
· <a href="https://github.com/vueComponent/vue-antd-issue-helper">Source Code</a>
11+
· <a href="https://github.com/vueComponent/issue-helper">Source Code</a>
1212
</div>
1313
</footer>
1414
</div>

src/components/BugReport.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import Vue from 'vue'
33
import * as api from '@/servies/request'
44
import i18n from '@/i18n'
5-
import { Form } from 'vue-antd-ui'
5+
import { Form } from 'ant-design-vue'
66
import FeatureForm from './FeatureForm.vue'
77
import BugForm from './BugForm.vue'
88
import PreviewModal from './PreviewModal.vue'
@@ -15,7 +15,7 @@ const params = location.search.slice(1).split('&').reduce((acc, param) => {
1515
}, {});
1616
1717
if (!params.repo) {
18-
params.repo = 'ant-design';
18+
params.repo = 'ant-design-vue';
1919
}
2020
2121
const BugReportForm = {
@@ -93,7 +93,7 @@ const BugReportForm = {
9393
9494
${content}
9595
`;
96-
const withMarker = `${withConfirm}\n\n<!-- generated by vue-antd-issue-helper. DO NOT REMOVE -->`;
96+
const withMarker = `${withConfirm}\n\n<!-- generated by issue-helper. DO NOT REMOVE -->`;
9797
const body = encodeURIComponent(withMarker).replace(/%2B/gi, '+');
9898
const label = issueType === 'feature' ? '&labels=Feature%20Request' : '';
9999
window.open(
@@ -149,7 +149,7 @@ const BugReportForm = {
149149
initialValue: params.repo,
150150
})(
151151
<a-select>
152-
<a-select-option key="ant-design">vue-antd-ui</a-select-option>
152+
<a-select-option key="ant-design-vue">ant-design-vue</a-select-option>
153153
</a-select>,
154154
)}
155155
</a-form-item>

src/i18n/locales/en/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The issue list is reserved exclusively for bug reports and feature requests. Tha
44

55
For usage questions, please use the following resources:
66

7-
- Read the [docs](/ant-design/docs/vue/introduce/)
7+
- Read the [docs](/ant-design-vue/docs/vue/introduce/)
88
<!-- - Look for / ask questions on [StackOverflow](https://stackoverflow.com/questions/ask?tags=antd) -->
99

1010
Also try to search for your issue - it may have already been answered or even fixed in the development branch. However, if you find that an old, closed issue still persists in the latest version, you should open a new issue using the form below instead of commenting on the old issue.

src/i18n/locales/zh/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
对于使用中遇到的问题,请使用以下资源:
88

9-
- 仔细阅读 [文档](/ant-design/docs/vue/introduce-cn/)
9+
- 仔细阅读 [文档](/ant-design-vue/docs/vue/introduce-cn/)
1010
<!-- - 在 [StackOverflow](https://stackoverflow.com/questions/ask?tags=antd) (英文) 或是 [SegmentFault](https://segmentfault.com/t/antd)(中文)搜索和提问 -->
1111

1212
最后,在开 issue 前,可以先搜索一下以往的旧 issue - 你遇到的问题可能已经有人提了,也可能已经在最新版本中被修正。注意:如果你发现一个已经关闭的旧 issue 在最新版本中仍然存在,请不要在旧 issue 下面留言,而应该用下面的表单开一个新的 issue。

src/index.html

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
3+
4+
<head>
45
<meta charset="utf-8">
56
<title>Vue Issue Helper</title>
67
<meta name="description" content="Help create better bug reports and pull requests for Vue and related repositories">
78
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<link rel="icon" type="image/x-icon" href="https://raw.githubusercontent.com/vueComponent/ant-design/master/logo.png">
9-
</head>
10-
<body>
9+
<link rel="icon" type="image/x-icon" href="https://raw.githubusercontent.com/vueComponent/ant-design-vue/master/logo.png">
10+
</head>
11+
12+
<body>
1113
<div id="app"></div>
12-
</body>
13-
</html>
14+
</body>
15+
16+
</html>

src/useComponents.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Vue from 'vue'
2-
import Antd from 'vue-antd-ui'
3-
import "vue-antd-ui/dist/antd.css"
2+
import Antd from 'ant-design-vue'
3+
import "ant-design-vue/dist/antd.css"
44

55
Vue.use(Antd)

0 commit comments

Comments
 (0)