-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from NextStepWebs/development
Restructure to use gulp.js, Value improvements, Fix bugs
- Loading branch information
Showing
23 changed files
with
222 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
localtesting/* | ||
localtesting/* | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
var gulp = require('gulp'), | ||
minifycss = require('gulp-minify-css'), | ||
uglify = require('gulp-uglify'), | ||
concat = require('gulp-concat'), | ||
header = require('gulp-header'), | ||
pkg = require('./package.json'); | ||
|
||
var banner = ['/**', | ||
' * <%= pkg.name %> v<%= pkg.version %>', | ||
' * Copyright <%= pkg.company %>', | ||
' * @link <%= pkg.homepage %>', | ||
' * @license <%= pkg.license %>', | ||
' */', | ||
''].join('\n'); | ||
|
||
gulp.task('scripts', function() { | ||
var js_files = [ | ||
'./src/js/codemirror/codemirror.js', | ||
'./src/js/codemirror/continuelist.js', | ||
'./src/js/codemirror/fullscreen.js', | ||
'./src/js/codemirror/markdown.js', | ||
'./src/js/codemirror/overlay.js', | ||
'./src/js/codemirror/gfm.js', | ||
'./src/js/codemirror/xml.js', | ||
'./src/js/typo.js', | ||
'./src/js/spell-checker.js', | ||
'./src/js/marked.js', | ||
'./src/js/simplemde.js']; | ||
|
||
return gulp.src(js_files) | ||
.pipe(header(banner, {pkg: pkg})) | ||
.pipe(concat('simplemde.min.js')) | ||
.pipe(gulp.dest('dist')) | ||
.pipe(uglify()) | ||
.pipe(header(banner, {pkg: pkg})) | ||
.pipe(gulp.dest('dist')); | ||
}); | ||
|
||
gulp.task('styles', function() { | ||
return gulp.src('./src/css/*.css') | ||
.pipe(concat('simplemde.min.css')) | ||
.pipe(gulp.dest('dist')) | ||
.pipe(minifycss()) | ||
.pipe(header(banner, {pkg: pkg})) | ||
.pipe(gulp.dest('dist')); | ||
}); | ||
|
||
gulp.task('default', ['scripts', 'styles']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "simplemde", | ||
"version": "1.5.1", | ||
"description": "A simple, beautiful, and embeddable JavaScript markdown editor. Features autosaving and spell checking.", | ||
"keywords": ["embeddable", "markdown", "editor", "javascript", "wysiwyg"], | ||
"homepage": "https://github.com/NextStepWebs/simplemde-markdown-editor", | ||
"main": "gulpfile.js", | ||
"license": "MIT", | ||
"company": "Next Step Webs, Inc.", | ||
"author": { | ||
"name": "Wes Cossick", | ||
"url": "http://www.WesCossick.com" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/NextStepWebs/simplemde-markdown-editor/issues" | ||
}, | ||
"dependencies": { | ||
"gulp": "*", | ||
"gulp-minify-css": "*", | ||
"gulp-uglify": "*", | ||
"gulp-concat": "*", | ||
"gulp-header": "*" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/NextStepWebs/simplemde-markdown-editor" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.