Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
support find [not full function yet]

example:
   find ./vendor -name tests -type d -maxdepth 4 -delete
  • Loading branch information
recca0120 committed Jan 1, 2016
1 parent dc2da52 commit 0d74f86
Show file tree
Hide file tree
Showing 12 changed files with 266 additions and 182 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"tests"
],
"dependencies": {
"jquery": "1.*",
"jquery": "2.*",
"jquery-mousewheel": "~3.1.13",
"jquery.terminal": "~0.8.8"
"jquery.terminal": "~0.9.3"
}
}
3 changes: 1 addition & 2 deletions elixir.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"production": true,
"sourcemaps": false,
"publicPath": "../../../../vendor/terminal",
"_publicPath": "public",
"publicPath": "public",
"font": {
"outputFolder": "fonts"
},
Expand Down
11 changes: 9 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,21 @@ elixir(function(mix) {
.scripts([
"jquery/dist/jquery.js",
"jquery-mousewheel/jquery.mousewheel.js",
"jquery.terminal/js/jquery.terminal-0.8.8.js",
"jquery.terminal/js/jquery.terminal-src.js",
"jquery.terminal/js/unix_formatting.js",
"jquery.terminal/js/xml_formatting.js",
], config.get('public.js.outputFolder') + '/plugins.js', 'resources/assets/vendor')
.sass([
'app.scss'
], config.get('public.css.outputFolder') + '/app.css')
], config.get('public.css.outputFolder') + '/app.css', {
includePaths: ['resources/assets/vendor']
})
.coffee([
'**/*.coffee'
], config.get('public.js.outputFolder') + '/app.js')
.copy([
'public'
], '../../../../vendor/terminal')
.browserSync({
files: [
'src/**/*.php',
Expand Down
2 changes: 1 addition & 1 deletion public/css/app.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/js/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0d74f86

Please sign in to comment.