From b5dff410f344a3f3191cc79f62f891d90ee5318a Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Thu, 20 Jul 2017 21:31:58 +0900 Subject: [PATCH] fix: point new dist files --- bower.json | 4 ++-- component.json | 6 +++--- package.json | 3 ++- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/bower.json b/bower.json index a52aac2..e5e867a 100644 --- a/bower.json +++ b/bower.json @@ -1,8 +1,8 @@ { "name": "c3", "main": [ - "c3.css", - "c3.js" + "dist/c3.css", + "dist/c3.js" ], "homepage": "https://github.com/masayuki0812/c3", "authors": [ diff --git a/component.json b/component.json index d1e18a0..612385d 100644 --- a/component.json +++ b/component.json @@ -9,11 +9,11 @@ }, "development": {}, "license": "MIT", - "main": "c3.js", + "main": "dist/c3.js", "scripts": [ - "c3.js" + "dist/c3.js" ], "styles": [ - "c3.css" + "dist/c3.css" ] } diff --git a/package.json b/package.json index 96195a4..8bf08d5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "name": "c3", "version": "0.4.15", "description": "D3-based reusable chart library", - "main": "c3.js", + "main": "dist/c3.js", + "style": "dist/c3.css", "scripts": { "serve": "static -p 8080 htdocs/", "lint": "jshint --reporter=node_modules/jshint-stylish src/ spec/",