Skip to content
This repository has been archived by the owner on Dec 9, 2019. It is now read-only.

Commit

Permalink
chore(fixes): small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
LasaleFamine committed Oct 14, 2017
1 parent 581a672 commit ce431d3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
1 change: 1 addition & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
save-exact true
save-prefix false
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"postcss": "6.0.11",
"postcss-cssnext": "3.0.2",
"postcss-loader": "2.0.6",
"postcss-reporter": "5.0.0",
"stylelint": "8.1.1",
"stylelint-config-standard": "17.0.0",
"text-loader": "0.0.1",
Expand Down
2 changes: 1 addition & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = () => ({
plugins: {
autoprefixer: {}
'postcss-cssnext': {}
}
});
8 changes: 4 additions & 4 deletions src/components/containers/sk-app/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

import {Element as PolymerElement} from '@polymer/polymer/polymer-element';
import '../../dumbs/sk-menu';
import './../../dumbs/sk-menu';

import HueRotateCss from './../../../global_style/animations/hue-rotate.postcss';
import LinksCss from './../../../global_style/basics/links.postcss';
import TypographyCSS from './../../../global_style/basics/typography.postcss';
import HueRotateCss from './../../../global-style/animations/hue-rotate.postcss';
import LinksCss from './../../../global-style/basics/links.postcss';
import TypographyCSS from './../../../global-style/basics/typography.postcss';
import css from './style.postcss';
import template from './template.html';

Expand Down
2 changes: 1 addition & 1 deletion src/components/dumbs/sk-menu-item/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

import { Element as PolymerElement } from '@polymer/polymer/polymer-element';
import {Element as PolymerElement} from '@polymer/polymer/polymer-element';

import css from './style.postcss';
import template from './template.html';
Expand Down
4 changes: 2 additions & 2 deletions src/components/dumbs/sk-menu/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import { Element as PolymerElement } from '@polymer/polymer/polymer-element';
import '../sk-menu-item';
import {Element as PolymerElement} from '@polymer/polymer/polymer-element';
import './../sk-menu-item';

import css from './style.postcss';
import template from './template.html';
Expand Down

0 comments on commit ce431d3

Please sign in to comment.