Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
tianyazhichiC
algorithm-visualizer
提交
8b16b319
A
algorithm-visualizer
项目概览
tianyazhichiC
/
algorithm-visualizer
与 Fork 源项目一致
从无法访问的项目Fork
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
algorithm-visualizer
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
8b16b319
编写于
6月 15, 2016
作者:
J
Jason Park
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
gulp prod
上级
eaae81e9
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
33 addition
and
25 deletion
+33
-25
gulpfile.babel.js
gulpfile.babel.js
+32
-24
package.json
package.json
+1
-1
未找到文件。
gulpfile.babel.js
浏览文件 @
8b16b319
'
use strict
'
;
'
use strict
'
;
import
path
from
'
path
'
;
import
path
from
"
path
"
;
import
gulp
from
'
gulp
'
;
import
gulp
from
"
gulp
"
;
import
uglify
from
'
gulp-uglify
'
;
import
uglify
from
"
gulp-uglify
"
;
import
cleanCSS
from
'
gulp-clean-css
'
;
import
cleanCSS
from
"
gulp-clean-css
"
;
import
autoprefixer
from
'
gulp-autoprefixer
'
;
import
autoprefixer
from
"
gulp-autoprefixer
"
;
import
concat
from
'
gulp-concat
'
;
import
concat
from
"
gulp-concat
"
;
import
header
from
'
gulp-header
'
;
import
header
from
"
gulp-header
"
;
import
babel
from
'
gulp-babel
'
;
import
gutil
from
"
gulp-util
"
;
import
gutil
from
'
gulp-util
'
;
import
sourcemaps
from
"
gulp-sourcemaps
"
;
import
sourcemaps
from
'
gulp-sourcemaps
'
;
import
connect
from
"
gulp-connect
"
;
import
connect
from
'
gulp-connect
'
;
import
browserify
from
"
browserify
"
;
import
browserify
from
'
browserify
'
;
import
babelify
from
"
babelify
"
;
import
babelify
from
'
babelify
'
;
import
source
from
"
vinyl-source-stream
"
;
import
source
from
'
vinyl-source-stream
'
;
import
buffer
from
"
vinyl-buffer
"
;
import
buffer
from
'
vinyl-buffer
'
;
import
pkg
from
"
./package.json
"
;
import
pkg
from
'
./package.json
'
;
const
appName
=
'
algorithm_visualizer
'
;
const
appName
=
'
algorithm_visualizer
'
;
const
appEntryPoint
=
'
./js/index.js
'
;
const
appEntryPoint
=
'
./js/index.js
'
;
...
@@ -80,9 +79,9 @@ gulp.task('minify-js', () => {
...
@@ -80,9 +79,9 @@ gulp.task('minify-js', () => {
gutil
.
log
(
'
\n\n
Build JS Paths:
\n
'
,
jsDir
,
'
\n\n
'
);
gutil
.
log
(
'
\n\n
Build JS Paths:
\n
'
,
jsDir
,
'
\n\n
'
);
return
browserify
({
return
browserify
({
entries
:
'
./js/index.js
'
,
entries
:
'
./js/index.js
'
,
debug
:
true
debug
:
true
})
})
.
transform
(
'
babelify
'
,
{
.
transform
(
'
babelify
'
,
{
presets
:
[
'
es2015
'
]
presets
:
[
'
es2015
'
]
})
})
...
@@ -105,9 +104,9 @@ gulp.task('build-js', () => {
...
@@ -105,9 +104,9 @@ gulp.task('build-js', () => {
gutil
.
log
(
'
\n\n
Build JS Paths:
\n
'
,
jsDir
,
'
\n\n
'
);
gutil
.
log
(
'
\n\n
Build JS Paths:
\n
'
,
jsDir
,
'
\n\n
'
);
return
browserify
({
return
browserify
({
entries
:
'
./js/index.js
'
,
entries
:
'
./js/index.js
'
,
debug
:
true
debug
:
true
})
})
.
transform
(
'
babelify
'
,
{
.
transform
(
'
babelify
'
,
{
presets
:
[
'
es2015
'
]
presets
:
[
'
es2015
'
]
})
})
...
@@ -131,7 +130,7 @@ gulp.task('build', ['compile-css', 'compile-js']);
...
@@ -131,7 +130,7 @@ gulp.task('build', ['compile-css', 'compile-js']);
// Server
// Server
gulp
.
task
(
'
connect
'
,
function
()
{
gulp
.
task
(
'
connect
'
,
function
()
{
connect
.
server
({
connect
.
server
({
port
:
process
.
env
.
PORT
||
8080
,
port
:
process
.
env
.
PORT
||
8080
,
...
@@ -141,11 +140,20 @@ gulp.task('connect', function() {
...
@@ -141,11 +140,20 @@ gulp.task('connect', function() {
// Watch
// Watch
gulp
.
task
(
'
watch
'
,
[
'
build
'
],
function
()
{
gulp
.
task
(
'
watch
'
,
[
'
build
'
],
function
()
{
gulp
.
watch
(
jsDir
,
[
'
compile-js
'
]);
gulp
.
watch
(
jsDir
,
[
'
compile-js
'
]);
gulp
.
watch
(
cssDir
,
[
'
compile-css
'
]);
gulp
.
watch
(
cssDir
,
[
'
compile-css
'
]);
});
});
// Heroku Production
gulp
.
task
(
'
prod
'
,
[
'
build
'
],
function
()
{
connect
.
server
({
port
:
process
.
env
.
PORT
||
8080
,
livereload
:
false
});
});
// Default
// Default
gulp
.
task
(
'
default
'
,
[
'
connect
'
,
'
watch
'
]);
gulp
.
task
(
'
default
'
,
[
'
connect
'
,
'
watch
'
]);
package.json
浏览文件 @
8b16b319
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
"description"
:
"Algorithm Visualizer"
,
"description"
:
"Algorithm Visualizer"
,
"main"
:
"index.js"
,
"main"
:
"index.js"
,
"scripts"
:
{
"scripts"
:
{
"start"
:
"gulp"
,
"start"
:
"gulp
prod
"
,
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
},
"repository"
:
{
"repository"
:
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录