Commit f5d549d 1 parent 9490263 commit f5d549d Copy full SHA for f5d549d
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 21
21
"build-cli" : " babel --presets es2015-node4 -d lib/datauri-cli src/cli && babel --presets es2015 -d lib/datauri-cli/old src/cli" ,
22
22
"pkg-json" : " mkdir -p lib/datauri && mkdir -p lib/datauri-cli && babel-node tools/pkg-json.js" ,
23
23
"check" : " npm run lint && npm run spec-prod" ,
24
- "deploy" : " npm publish lib/datauri-cli && npm publish lib/datauri" ,
24
+ "deploy" : " npm run build && npm publish lib/datauri-cli && npm publish lib/datauri" ,
25
25
"preversion" : " npm run check" ,
26
26
"postversion" : " npm run build"
27
27
},
81
81
" mimer" ,
82
82
" semver"
83
83
],
84
- "description" : " Simple DataURI scheme module "
84
+ "description" : " Create DataURI scheme easily "
85
85
},
86
86
"datauri-cli" : {
87
87
"dependencies" : [
92
92
"bin" : {
93
93
"datauri" : " ./index.js"
94
94
},
95
- "description" : " Simple DataURI scheme client "
95
+ "description" : " Create DataURI scheme using terminal "
96
96
}
97
97
}
98
98
}
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ function getMetadata(name) {
43
43
meta . bin = buildConfig [ name ] . bin ;
44
44
}
45
45
46
+ meta . description = buildConfig [ name ] . description ;
47
+
46
48
return meta ;
47
49
}
48
50
You can’t perform that action at this time.
0 commit comments