Skip to content

Commit

Permalink
Merge pull request #25 from sesser/master
Browse files Browse the repository at this point in the history
Fixing deprecated dependancy (swig) #22
  • Loading branch information
fundon committed Dec 17, 2016
2 parents ba3f3d9 + f471094 commit bcc02c5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -14,7 +14,7 @@ const debug = require('debug')('koa:swig');
const mixin = require('utils-merge');
const thenify = require('thenify');
const path = require('path');
const swig = require('swig');
const swig = require('swig-templates');
const extname = path.extname;
const resolve = path.resolve;

Expand Down
10 changes: 5 additions & 5 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "koa-swig",
"version": "2.2.0",
"version": "2.2.1",
"description": "Koa view render based on Swig, support tags, filters, and extensions.",
"main": "index.js",
"scripts": {
Expand All @@ -23,13 +23,13 @@
"koa": "^1.x",
"koa-flash": "^1.x",
"koa-session": "^3.x",
"mocha": "^2.x",
"should": "^7.x",
"supertest": "^1.x"
"mocha": "^3.x",
"should": "^11.x",
"supertest": "^2.x"
},
"dependencies": {
"debug": "^2.x",
"swig": "^1.4.2",
"swig-templates": "^2.0.2",
"thenify": "^3.1.0",
"utils-merge": "^1.0.0"
},
Expand Down

0 comments on commit bcc02c5

Please sign in to comment.