From 2367ac17fdf88699e405903497c451385545a294 Mon Sep 17 00:00:00 2001 From: Hristo Deshev Date: Wed, 14 Oct 2015 11:41:25 +0300 Subject: [PATCH] Upgrade to latest css-value. --- css-value/{reworkcss-value.js => index.js} | 2 +- css-value/package.json | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) rename css-value/{reworkcss-value.js => index.js} (98%) diff --git a/css-value/reworkcss-value.js b/css-value/index.js similarity index 98% rename from css-value/reworkcss-value.js rename to css-value/index.js index 3aca66f11..d3af489b9 100644 --- a/css-value/reworkcss-value.js +++ b/css-value/index.js @@ -1,5 +1,5 @@ -module.exports.parse = parse; +module.exports = parse; function parse(str) { return new Parser(str).parse(); diff --git a/css-value/package.json b/css-value/package.json index 31ec2a76e..086525a5a 100644 --- a/css-value/package.json +++ b/css-value/package.json @@ -8,5 +8,10 @@ "type": "git", "url": "git://github.com/visionmedia/css-value.git" }, - "main": "reworkcss-value.js" + "dependencies": {}, + "devDependencies": { + "mocha": "~1.9.0", + "should": "~1.2.2" + }, + "main": "index" }