Skip to content

Commit 14a749c

Browse files
committed
publish npm
1 parent d9cbf12 commit 14a749c

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

.npmignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# vuecsv
22

33
* CSV components for Vue.js
4+
5+
## Use
6+
47
* sample is in index.cdn.html
58
```
69
npm run buildcdn && open dist/index.cdn.html
710
```
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+
```
816

917
## Build Setup
1018

package.json

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
11
{
22
"name": "vuecsv",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"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",
512
"author": "Yutaka Nishimura <[email protected]>",
6-
"private": true,
13+
"private": false,
714
"scripts": {
815
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
916
"start": "npm run dev",
1017
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
1118
"test": "npm run unit",
1219
"lint": "eslint --ext .js,.vue src test/unit",
1320
"build": "node build/build.js",
14-
"buildcdn": "node build/build.cdn.js"
21+
"buildcdn": "node build/build.cdn.js",
22+
"prepare": "npm run buildcdn"
1523
},
1624
"dependencies": {
1725
"file-saver": "^1.3.3",

0 commit comments

Comments
 (0)