Use packaged version of UNorm.

This commit is contained in:
Chad Weider 2012-08-15 08:55:27 -07:00
parent 19a7208c97
commit 1541237654
5 changed files with 5 additions and 406 deletions

View File

@ -40,6 +40,7 @@ var LIBRARY_WHITELIST = [
'async'
, 'security'
, 'underscore'
, 'unorm'
];
// Rewrite tar to include modules with no extensions and proper rooted paths.

View File

@ -48,6 +48,7 @@
, "cssmanager.js"
, "colorutils.js"
, "undomodule.js"
, "$unorm.js"
, "contentcollector.js"
, "changesettracker.js"
, "linestylefilter.js"

View File

@ -31,7 +31,8 @@
"slide" : "1.1.3",
"semver" : "1.0.13",
"security" : "1.0.0",
"underscore" : "1.3.1"
"underscore" : "1.3.1",
"unorm" : "1.0.0"
},
"bin": { "etherpad-lite": "./node/server.js" },
"devDependencies": {

View File

@ -25,7 +25,7 @@
var _MAX_LIST_LEVEL = 8;
var UNorm = require('./unorm');
var UNorm = require('unorm');
var Changeset = require('./Changeset');
var hooks = require('./pluginfw/hooks');
var _ = require('./underscore');

File diff suppressed because one or more lines are too long