Skip to content

Commit

Permalink
replaced wrong package typify with right package(i hope) typeify
Browse files Browse the repository at this point in the history
  • Loading branch information
pr1ntr committed Apr 4, 2014
1 parent 8a3c7ac commit 9dc76c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"uglify-js": "~2.3.6",
"through": "~2.3.4",
"browserify-htmlr": "~0.0.3",
"typify": "~0.2.5"
"typeify": "~0.1.1"
},
"devDependencies": {},
"repository": "[email protected]:pr1ntr/bundlr.git",
Expand Down
4 changes: 2 additions & 2 deletions src/bundlr.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ uglify = require('uglify-js')
mime = require('mime')
through = require('through')
fs = require('fs')
typify = require('typify')
typeify = require('typeify')
htmlr = require('browserify-htmlr')


Expand All @@ -24,7 +24,7 @@ module.exports = bundlr = (opts) ->
b = browserify()

b.transform(coffeeify)
b.transform(typify)
b.transform(typeify)
b.transform(htmlr)

b.transform (filename) ->
Expand Down

0 comments on commit 9dc76c8

Please sign in to comment.