File tree 3 files changed +33
-3
lines changed
3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change
1
+ build /
2
+ config /
3
+ static /
4
+ src /
5
+ test /
6
+ node_modules /
7
+ /.babelrc
8
+ /.editorconfig
9
+ /.eslintignore
10
+ /.eslintrc.js
11
+ /.postcssrc.js
12
+ /package-lock.json
13
+ /yarn.lock
14
+ /.env
Original file line number Diff line number Diff line change 1
1
# vuecsv
2
2
3
3
* CSV components for Vue.js
4
+
5
+ ## Use
6
+
4
7
* sample is in index.cdn.html
5
8
```
6
9
npm run buildcdn && open dist/index.cdn.html
7
10
```
11
+ * CDN
12
+ ```
13
+ https://unpkg.com/vuecsv/dist/static/js/app.cdn.js
14
+ https://unpkg.com/vuecsv/dist/static/css/app.cdn.js
15
+ ```
8
16
9
17
## Build Setup
10
18
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vuecsv" ,
3
- "version" : " 0.0.1 " ,
3
+ "version" : " 0.0.2 " ,
4
4
"description" : " CSV components for Vue.js" ,
5
+ "homepage" : " https://github.com/ynishi/vuecsv" ,
6
+ "repository" : {
7
+ "type" : " git" ,
8
+ "url" : " https://github.com/ynishi/vuecsv.git"
9
+ },
10
+ "license" : " MIT" ,
11
+ "main" : " dist/static/js/app.cdn.js" ,
5
12
"author" :
" Yutaka Nishimura <[email protected] >" ,
6
- "private" : true ,
13
+ "private" : false ,
7
14
"scripts" : {
8
15
"dev" : " webpack-dev-server --inline --progress --config build/webpack.dev.conf.js" ,
9
16
"start" : " npm run dev" ,
10
17
"unit" : " cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run" ,
11
18
"test" : " npm run unit" ,
12
19
"lint" : " eslint --ext .js,.vue src test/unit" ,
13
20
"build" : " node build/build.js" ,
14
- "buildcdn" : " node build/build.cdn.js"
21
+ "buildcdn" : " node build/build.cdn.js" ,
22
+ "prepare" : " npm run buildcdn"
15
23
},
16
24
"dependencies" : {
17
25
"file-saver" : " ^1.3.3" ,
You can’t perform that action at this time.
0 commit comments