Skip to content

Commit

Permalink
chore:删除无用的图片
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoxuhui committed Nov 6, 2018
1 parent 24d75f1 commit b0d4986
Show file tree
Hide file tree
Showing 12 changed files with 127 additions and 8 deletions.
Binary file added dist/iconfont.eot
Binary file not shown.
116 changes: 116 additions & 0 deletions dist/iconfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/iconfont.ttf
Binary file not shown.
2 changes: 2 additions & 0 deletions dist/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
</head>
<body>
<div id="app"></div>
<script src="/dist/build.js"></script>
<script src="./dist/build.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-meditor",
"description": "一款使用marked和highlight.js开发的一款markdown编辑器",
"version": "0.9.1",
"version": "0.9.2",
"author": "zhaoxuhui<1258835133@qq.com>",
"license": "MIT",
"main": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</template>

<script>
// import MarkDown from './markdown/index' // 开发文件
import MarkDown from '../dist' // 引入打包好的文件
import MarkDown from './markdown/index' // 开发文件
// import MarkDown from '../dist' // 引入打包好的文件
export default {
name: 'app',
components: {
Expand Down
4 changes: 2 additions & 2 deletions src/markdown/css/common.less

Large diffs are not rendered by default.

Binary file removed src/markdown/img/checked.jpg
Binary file not shown.
Binary file removed src/markdown/img/notChecked.jpg
Binary file not shown.
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ var path = require('path')
var webpack = require('webpack')

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

0 comments on commit b0d4986

Please sign in to comment.