Skip to content

Commit

Permalink
welcome to the future
Browse files Browse the repository at this point in the history
  • Loading branch information
arkarkark committed Jan 22, 2018
1 parent 2a34a0b commit c98cd87
Show file tree
Hide file tree
Showing 6 changed files with 3,578 additions and 7 deletions.
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
v8.6.0
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
ruby-2.1.3
ruby-2.4.0
4 changes: 2 additions & 2 deletions Gulpfile.coffee
Expand Up @@ -6,7 +6,7 @@ fs = require "fs"
gcson = require "gulp-cson"
glob = require "glob"
gulp = require "gulp"
gutil = require "gulp-util"
Vinyl = require "vinyl"
ignore = require "gulp-ignore"
ngAnnotate = require "gulp-ng-annotate"
rename = require "gulp-rename"
Expand Down Expand Up @@ -60,7 +60,7 @@ swallowError = (err) ->
srcFromString = (filename, string) ->
src = require("stream").Readable(objectMode: true)
src._read = ->
this.push(new gutil.File(cwd: "", base: "", path: filename, contents: new Buffer(string)))
this.push(new Vinyl(cwd: ".", base: ".", path: filename, contents: new Buffer(string)))
this.push(null)
src

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -5,7 +5,7 @@ dev:
.)

setup:
npm install
yarn
mkdir -p vendor
if [ ! -d vendor/python-dateutil-1.5 ]; then \
curl -o - http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz | \
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -12,7 +12,7 @@
"angular-resource": "^1.4.8",
"angular-ui-router": "0.3.2",
"bootstrap": "^3.3.5",
"coffee-script": "^1.8.0",
"coffeescript": "^1.8.0",
"cson-cli": "^1.0.2",
"event-stream": "^3.2.1",
"font-awesome": "^4.4.0",
Expand All @@ -36,8 +36,8 @@
"gulp-sourcemaps": "^1.2.2",
"gulp-tap": "^0.1.3",
"gulp-uglify": "^1.0.1",
"gulp-util": "^3.0.7",
"jquery": "^2.1.4",
"vinyl": "^2.1.0",
"jquery": "^3.3.1",
"node-sass": "^3.13.0",
"underscore": "^1.8.3",
"yargs": "^2.3.0"
Expand Down

0 comments on commit c98cd87

Please sign in to comment.