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

File tree

5 files changed

+75
-16244
lines changed

5 files changed

+75
-16244
lines changed

dist/react-simplemde-editor.min.js

Lines changed: 55 additions & 16241 deletions
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/simplemde.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 10 additions & 0 deletions
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

Lines changed: 2 additions & 2 deletions
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)