chore(): move core-hn and fiber into their own packages.

This commit is contained in:
Josh Thomas
2017-06-22 11:43:06 -05:00
parent a4a50d255b
commit f2e0a29d99
20 changed files with 76 additions and 3 deletions

View File

Before

Width:  |  Height:  |  Size: 580 B

After

Width:  |  Height:  |  Size: 580 B

View File

@@ -0,0 +1,24 @@
{
"name": "@stencil/core-hn-demo",
"version": "0.0.1",
"description": "Hacker News PWA demo of Stencil app using Ionic components",
"main": "index.js",
"scripts": {
"build": "stencil build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/ionic.git"
},
"dependencies": {
"@ionic/ionic": "^0.0.1",
"@stencil/core": "^0.0.1"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/ionic/issues"
},
"homepage": "https://github.com/ionic-team/ionic#readme"
}

View File

@@ -0,0 +1,7 @@
exports.config = {
src: 'src',
dest: 'dist',
bundles: [
{ components: ['news-list', 'news-container', 'comments-page', 'comments-list'] }
]
};

View File

@@ -0,0 +1,23 @@
{
"name": "@stencil/fiber-demo",
"version": "0.0.1",
"description": "Demo of Stencil app using Ionic components to show rendering capabilities",
"main": "index.js",
"scripts": {
"build": "stencil build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/ionic.git"
},
"dependencies": {
"@stencil/core": "^0.0.1"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/ionic/issues"
},
"homepage": "https://github.com/ionic-team/ionic#readme"
}

View File

@@ -0,0 +1,21 @@
exports.config = {
src: 'src',
dest: 'dist',
bundles: [
{ components: ['ion-app', 'ion-content', 'ion-footer', 'ion-header', 'ion-navbar', 'ion-page', 'ion-title', 'ion-toolbar'] },
{ components: ['ion-avatar', 'ion-thumbnail'] },
{ components: ['ion-badge'] },
{ components: ['ion-button', 'ion-buttons', 'ion-icon'] },
{ components: ['ion-card', 'ion-card-content', 'ion-card-header', 'ion-card-title'] },
{ components: ['ion-gesture', 'ion-scroll'], priority: 'low' },
{ components: ['ion-item', 'ion-item-divider', 'ion-label', 'ion-list', 'ion-list-header', 'ion-skeleton-text'] },
{ components: ['ion-loading', 'ion-loading-controller'] },
{ components: ['ion-menu'], priority: 'low' },
{ components: ['ion-modal', 'ion-modal-controller'] },
{ components: ['ion-slides', 'ion-slide'] },
{ components: ['ion-spinner'] },
{ components: ['ion-toggle'] },
{ components: ['fiber-demo', 'fiber-triangle', 'fiber-dot'] },
{ components: ['news-list', 'news-container', 'comments-page', 'comments-list'] }
]
};

View File

@@ -14,8 +14,6 @@ exports.config = {
{ components: ['ion-modal', 'ion-modal-controller'] },
{ components: ['ion-slides', 'ion-slide'] },
{ components: ['ion-spinner'] },
{ components: ['ion-toggle'] },
{ components: ['fiber-demo', 'fiber-triangle', 'fiber-dot'] },
{ components: ['news-list', 'news-container', 'comments-page', 'comments-list'] }
{ components: ['ion-toggle'] }
]
};