chore:删除无用的图片

This commit is contained in:
zhaoxuhui 2018-11-06 09:31:04 +08:00
parent 24d75f1b11
commit b0d4986d42
12 changed files with 127 additions and 8 deletions

BIN
dist/iconfont.eot vendored Normal file

Binary file not shown.

116
dist/iconfont.svg vendored Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 49 KiB

BIN
dist/iconfont.ttf vendored Normal file

Binary file not shown.

2
dist/index.js vendored Normal file

File diff suppressed because one or more lines are too long

1
dist/index.js.map vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -6,6 +6,6 @@
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
<script src="/dist/build.js"></script> <script src="./dist/build.js"></script>
</body> </body>
</html> </html>

View File

@ -1,7 +1,7 @@
{ {
"name": "vue-meditor", "name": "vue-meditor",
"description": "一款使用marked和highlight.js开发的一款markdown编辑器", "description": "一款使用marked和highlight.js开发的一款markdown编辑器",
"version": "0.9.1", "version": "0.9.2",
"author": "zhaoxuhui<1258835133@qq.com>", "author": "zhaoxuhui<1258835133@qq.com>",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -7,8 +7,8 @@
</template> </template>
<script> <script>
// import MarkDown from './markdown/index' // import MarkDown from './markdown/index' //
import MarkDown from '../dist' // // import MarkDown from '../dist' //
export default { export default {
name: 'app', name: 'app',
components: { components: {

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

View File

@ -2,11 +2,11 @@ var path = require('path')
var webpack = require('webpack') var webpack = require('webpack')
module.exports = { module.exports = {
entry: './src/main.js', // 打包为npm包时将此处修改为 ./src/index.js entry: './src/index.js', // 打包为npm包时将此处修改为 ./src/index.js
output: { output: {
path: path.resolve(__dirname, './dist'), path: path.resolve(__dirname, './dist'),
publicPath: '/dist/', publicPath: '/dist/',
filename: 'build.js',// 打包为npm包时将此处修改为 index.js filename: 'index.js',// 打包为npm包时将此处修改为 index.js
libraryTarget: 'umd', libraryTarget: 'umd',
library: 'markdown-vue', library: 'markdown-vue',
umdNamedDefine: true umdNamedDefine: true