chore(ionicons): remove ionicon font and scss

This commit is contained in:
Adam Bradley
2017-07-17 08:48:51 -05:00
parent e6ce405972
commit 201821f2fd
14 changed files with 13 additions and 105 deletions

View File

@ -1,6 +1,5 @@
@import "../../themes/ionic.globals";
@import "../../../node_modules/ionicons/dist/scss/ionicons";
// Icon
// --------------------------------------------------

View File

@ -246,6 +246,5 @@
// Fonts
// --------------------------------------------------
@import
"../fonts/ionicons",
"../fonts/noto-sans",
"../fonts/roboto";

View File

@ -19,10 +19,6 @@ $app-direction: ltr !default;
$font-path: "/dist/fonts" !default;
// Ionicons font path
$ionicons-font-path: $font-path !default;
// Hairline width
$hairlines-width: .55px !default;

View File

@ -1,4 +0,0 @@
// Ionicons build for Ionic Apps
@import
"../fonts/ionicons";

View File

@ -1,19 +1,19 @@
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": false,
"alwaysStrict": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"jsxFactory": "h",
"lib": [
"dom",
"es2015"
],
"moduleResolution": "node",
"module": "es2015",
"target": "es2015",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
@ -21,16 +21,14 @@
"outDir": "dist",
"pretty": true,
"removeComments": false,
"sourceMap": false,
"jsx": "react",
"jsxFactory": "h"
"target": "es2015"
},
"include": [
"**/*.ts",
"**/*.tsx",
"types/jsx.d.ts"
"src/**/*.ts",
"src/**/**/*.tsx"
],
"exclude": [
"node_modules"
"node_modules",
"src/animations"
]
}