178518demo
v0.0.2
Published
[](https://www.npmjs.org/package/178518demo) [](http://nodejs.org/download/) [
WebStorm > Preference > Tools > File Watchers
$FileName$ $FileNameWithoutExtension$.css --source-map
$FileNameWithoutExtension$.css:$FileNameWithoutExtension$.css.mapAutoprefixer
打开Webstorm设置,Preferences -> Tools -> External Tools ;点击新增按钮,如图:


-u autoprefixer -o $FileDir$/$FileName$ $FileDir$/$FileName$
$ProjectFileDir$现在打开你的WebStrom在css文件按shift+A看看会发生什么神奇的事情吧 😄
目录结构
目录规范: ├── dist # 编译过的源码,npm发布目录 ├── examples # 编译过的源码,npm发布目录 │ ├── src │ │ ├── index.html │ │ ├── index.js ├── src # 组件源码 │ ├── assets │ │ ├── index.less │ ├── index.js ├── tests # Jest测试相关 │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── HISTORY.md # 版本历史相关 │ ├── LICENSE # 版权申明 │ ├── README.md │ ├── package.json │ ├── webpack.config # 项目开发demo的时候 需要用到的webpack

