Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #234 from Wardormeur/bugfix/international-slug
Browse files Browse the repository at this point in the history
Add support for international url slug
  • Loading branch information
Wardormeur committed Mar 24, 2016
2 parents ad34074 + 0da9201 commit 478ed51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dojos.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var _ = require('lodash');
var async = require('async');
var slug = require('slug');
var slug = require('limax');
var shortid = require('shortid');
var crypto = require('crypto');
var randomstring = require('randomstring');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
"seneca-mail": "0.2.1",
"seneca-postgresql-store": "1.1.3",
"shortid": "2.2.2",
"slug": "0.9.1",
"xoauth2": "1.1.0",
"yargs": "3.7.2"
"yargs": "3.7.2",
"limax": "~1.2.0"
}
}
2 changes: 1 addition & 1 deletion scripts/generate-slugs.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var _ = require('lodash');
var url = require('url');
var async = require('async');
var request = require('request');
var slug = require('slug');
var slug = require('limax');
var seneca = require('seneca')({
timeout: 10 * 60 * 1000
});
Expand Down

0 comments on commit 478ed51

Please sign in to comment.