chore(): fix lint issue

This commit is contained in:
Manu Mtz.-Almeida
2018-07-31 00:42:10 +02:00
parent fd8f875a5f
commit 93b68561c4
2 changed files with 7 additions and 12 deletions

View File

@ -34,7 +34,7 @@
@supports (padding-top: env(safe-area-inset-top)) { @supports (padding-top: env(safe-area-inset-top)) {
:host(.placement-bottom) { :host(.placement-bottom) {
padding-bottom: env(safe-area-inset-bottom); @include padding(null, null, env(safe-area-inset-bottom));
} }
} }

View File

@ -1,6 +1,7 @@
const sass = require('@stencil/sass'); import { Config } from '@stencil/core';
import sass from '@stencil/sass';
exports.config = { export const config: Config = {
namespace: 'Ionic', namespace: 'Ionic',
bundles: [ bundles: [
{ components: ['ion-action-sheet', 'ion-action-sheet-controller'] }, { components: ['ion-action-sheet', 'ion-action-sheet-controller'] },
@ -29,8 +30,8 @@ exports.config = {
{ components: ['ion-note', 'ion-img', 'ion-text'] }, { components: ['ion-note', 'ion-img', 'ion-text'] },
{ components: ['ion-popover', 'ion-popover-controller'] }, { components: ['ion-popover', 'ion-popover-controller'] },
{ components: ['ion-radio', 'ion-radio-group'] }, { components: ['ion-radio', 'ion-radio-group'] },
{ components: ['ion-range', 'ion-range-knob']}, { components: ['ion-range', 'ion-range-knob'] },
{ components: ['ion-refresher', 'ion-refresher-content']}, { components: ['ion-refresher', 'ion-refresher-content'] },
{ components: ['ion-reorder', 'ion-reorder-group'] }, { components: ['ion-reorder', 'ion-reorder-group'] },
{ components: ['ion-ripple-effect'] }, { components: ['ion-ripple-effect'] },
{ components: ['ion-router', 'ion-route', 'ion-route-redirect', 'ion-router-outlet'] }, { components: ['ion-router', 'ion-route', 'ion-route-redirect', 'ion-router-outlet'] },
@ -53,8 +54,7 @@ exports.config = {
type: 'dist' type: 'dist'
}, },
{ {
type: 'stats', type: 'stats'
file: 'stats.json'
} }
], ],
copy: [{ src: '**/*.scss' }], copy: [{ src: '**/*.scss' }],
@ -62,8 +62,3 @@ exports.config = {
globalScript: 'src/global/ionic-global.ts', globalScript: 'src/global/ionic-global.ts',
enableCache: true, enableCache: true,
}; };
exports.devServer = {
root: '.',
watchGlob: ['dist/*.*', 'dist/ionic/**/**', 'src/**/*.html']
};