Skip to content

Commit 360ff9d

Browse files
authored
Merge pull request #21 from benrlodge/fix-typo-dep
update build files
2 parents 252b0c5 + 16c6f8a commit 360ff9d

5 files changed

+75
-16244
lines changed

dist/react-simplemde-editor.min.js

+55-16,241
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-simplemde-editor.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/simplemde.min.css

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var gulp = require('gulp');
2+
var dist = 'dist/';
3+
4+
gulp.task('styles', function(){
5+
return gulp.src('./node_modules/simplemde/dist/simplemde.min.css')
6+
.pipe(gulp.dest(dist))
7+
});
8+
9+
// by default build project and then watch files in order to trigger livereload
10+
gulp.task('default', ['styles']);

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-simplemde-editor",
33
"homepage": "http://www.benrlodge.com",
44
"repository": "https://github.com/benrlodge/react-simplemde-editor",
5-
"version": "3.6.0",
5+
"version": "3.6.1",
66
"author": "Ben Lodge",
77
"license": "MIT",
88
"dependencies": {
@@ -28,7 +28,7 @@
2828
},
2929
"scripts": {
3030
"build": "webpack --progress --colors",
31-
"build-prod": "NODE_ENV=production webpack --progress --colors",
31+
"build-prod": "NODE_ENV=production webpack --progress --colors && gulp",
3232
"build-all" : "npm run build && npm run build-prod"
3333
}
3434
}

0 commit comments

Comments
 (0)