fix(): updates so that core works with hn demo and ionic-vanilla

This commit is contained in:
Josh Thomas
2017-06-26 22:44:50 -05:00
parent 167c558860
commit c94a1b7d97
5 changed files with 26 additions and 8 deletions

View File

@ -3,5 +3,10 @@
"packages": [
"packages/*"
],
"commands": {
"bootstrap": {
"ignore": "@stencil/*"
}
},
"version": "0.0.0"
}

View File

@ -3,5 +3,8 @@ exports.config = {
dest: 'dist',
bundles: [
{ components: ['news-list', 'news-container', 'comments-page', 'comments-list'] }
],
collections: [
'@ionic/core'
]
};

View File

@ -2,11 +2,11 @@
"name": "@ionic/core",
"version": "0.0.1",
"description": "Base components for Ionic",
"main": "dist/index.js",
"main": "dist/manifest.json",
"scripts": {
"build": "npm run clean && npm run copy.vendor && stencil build",
"clean": "rm -Rf ./dist/*",
"copy.vendor": "mkdir -p ./temp/vendor && cp -Rf ./src/vendor ./temp",
"build": "npm run clean && npm run copy.vendor && stencil collection",
"clean": "rm -Rf ./dist",
"copy.vendor": "mkdir -p ./dist/vendor && cp -Rf ./src/vendor ./dist",
"test": "jest"
},
"repository": {
@ -14,7 +14,9 @@
"url": "git+https://github.com/ionic-team/ionic.git"
},
"dependencies": {
"@stencil/core": "^0.0.1",
"@stencil/core": "^0.0.1"
},
"devDependencies": {
"ionicons": "3.0.0"
},
"author": "Ionic Team",

View File

@ -4,9 +4,8 @@
"description": "Base components for Ionic",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run copy.vendor && stencil build",
"clean": "rm -Rf ./dist/*",
"copy.vendor": "mkdir -p ./dist/vendor && cp -Rf ./src/vendor ./dist",
"build": "npm run clean && stencil build",
"clean": "rm -Rf ./dist",
"test": "jest"
},
"repository": {
@ -16,6 +15,9 @@
"dependencies": {
"@ionic/core": "0.0.1"
},
"devDependencies":{
"@stencil/core": "0.0.1"
},
"author": "Ionic Team",
"license": "MIT",
"bugs": {

View File

@ -0,0 +1,6 @@
exports.config = {
dest: 'dist',
collections: [
'@ionic/core'
]
};