Skip to content

Commit

Permalink
chore(): fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Jul 30, 2018
1 parent fd8f875 commit 93b6856
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion core/src/components/tabbar/tabbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

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

Expand Down
17 changes: 6 additions & 11 deletions core/stencil.config.js → core/stencil.config.ts
Original file line number Diff line number Diff line change
@@ -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',
bundles: [
{ components: ['ion-action-sheet', 'ion-action-sheet-controller'] },
Expand Down Expand Up @@ -29,8 +30,8 @@ exports.config = {
{ components: ['ion-note', 'ion-img', 'ion-text'] },
{ components: ['ion-popover', 'ion-popover-controller'] },
{ components: ['ion-radio', 'ion-radio-group'] },
{ components: ['ion-range', 'ion-range-knob']},
{ components: ['ion-refresher', 'ion-refresher-content']},
{ components: ['ion-range', 'ion-range-knob'] },
{ components: ['ion-refresher', 'ion-refresher-content'] },
{ components: ['ion-reorder', 'ion-reorder-group'] },
{ components: ['ion-ripple-effect'] },
{ components: ['ion-router', 'ion-route', 'ion-route-redirect', 'ion-router-outlet'] },
Expand All @@ -53,17 +54,11 @@ exports.config = {
type: 'dist'
},
{
type: 'stats',
file: 'stats.json'
type: 'stats'
}
],
copy: [{ src: '**/*.scss' }],
preamble: '(C) Ionic http://ionicframework.com - MIT License',
globalScript: 'src/global/ionic-global.ts',
enableCache: true,
};

exports.devServer = {
root: '.',
watchGlob: ['dist/*.*', 'dist/ionic/**/**', 'src/**/*.html']
};

0 comments on commit 93b6856

Please sign in to comment.