summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrenton Simpson <appsforartists@google.com>2015-12-30 14:30:20 -0800
committerBrenton Simpson <appsforartists@google.com>2015-12-30 14:42:36 -0800
commit4892900b289a4fae21155c22aace5b9d73a8e77b (patch)
tree61bd0e471a18ca81a183e18d91419699a5594923
parent544e3bf63ca05927ff16750a41f868ea2789e743 (diff)
Added require('material-design-icons').PATH
-rw-r--r--index.js8
-rw-r--r--package.json2
2 files changed, 9 insertions, 1 deletions
diff --git a/index.js b/index.js
new file mode 100644
index 000000000000..4a265951441e
--- /dev/null
+++ b/index.js
@@ -0,0 +1,8 @@
+var join = require('path').join;
+
+module.exports = {
+ PATH: join(
+ __dirname,
+ 'material-design-icons'
+ ),
+};
diff --git a/package.json b/package.json
index 3f6c5ae85e47..869ff502923f 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "material-design-icons",
"version": "2.1.1",
"description": "Material Design icons by Google",
- "main": "index.html",
+ "main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/google/material-design-icons"