mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
fix(): updates so that core works with hn demo and ionic-vanilla
This commit is contained in:
@ -3,5 +3,10 @@
|
||||
"packages": [
|
||||
"packages/*"
|
||||
],
|
||||
"commands": {
|
||||
"bootstrap": {
|
||||
"ignore": "@stencil/*"
|
||||
}
|
||||
},
|
||||
"version": "0.0.0"
|
||||
}
|
||||
|
@ -3,5 +3,8 @@ exports.config = {
|
||||
dest: 'dist',
|
||||
bundles: [
|
||||
{ components: ['news-list', 'news-container', 'comments-page', 'comments-list'] }
|
||||
],
|
||||
collections: [
|
||||
'@ionic/core'
|
||||
]
|
||||
};
|
||||
|
@ -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",
|
||||
|
@ -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": {
|
||||
|
6
packages/ionic-vanilla/stencil.config.js
Normal file
6
packages/ionic-vanilla/stencil.config.js
Normal file
@ -0,0 +1,6 @@
|
||||
exports.config = {
|
||||
dest: 'dist',
|
||||
collections: [
|
||||
'@ionic/core'
|
||||
]
|
||||
};
|
Reference in New Issue
Block a user