Skip to content
This repository was archived by the owner on Sep 13, 2024. It is now read-only.

Commit ccb2820

Browse files
committed
Merge pull request #4 from jeroenoomsNL/master
Refactoring SCSS part
2 parents 7cb163c + 64ea8c5 commit ccb2820

File tree

6 files changed

+26
-32
lines changed

6 files changed

+26
-32
lines changed

generators/app/templates/_gulpfile.js

+2-18
Original file line numberDiff line numberDiff line change
@@ -78,28 +78,12 @@ gulp.task('clean', function() {
7878
// Precompile .scss and concat with ionic.css
7979
gulp.task('styles', function() {
8080

81-
var options = build ? { style: 'compressed' } : { style: 'expanded' };
81+
var options = build ? { outputStyle: 'compressed' } : { outputStyle: 'expanded' };
8282

83-
var sassStream = gulp.src(config.path.src.asset.scss + '/main.scss')
83+
return gulp.src(config.path.src.asset.scss + '/main.scss')
8484
.pipe(plugins.sass(options))
85-
.on('error', function(err) {
86-
console.log('err: ', err);
87-
});
88-
89-
// Build ionic css dynamically to support custom themes
90-
var ionicStream = gulp.src(config.path.src.asset.scss + '/ionic-styles.scss')
91-
.pipe(plugins.cached('ionic-styles'))
92-
.pipe(plugins.sass(options))
93-
// Cache and remember ionic .scss in order to cut down re-compile time
94-
.pipe(plugins.remember('ionic-styles'))
95-
.on('error', function(err) {
96-
console.log('err: ', err);
97-
});
98-
99-
return streamqueue({ objectMode: true }, ionicStream, sassStream)
10085
.pipe(plugins.autoprefixer(config.autoprefix.support.split(', ')))
10186
.pipe(plugins.concat('main.css'))
102-
.pipe(plugins.if(build, plugins.stripCssComments()))
10387
.pipe(plugins.if(build && !emulate, plugins.rev()))
10488
.pipe(gulp.dest(path.join(targetDir, 'styles')))
10589
.on('error', errorHandler);

generators/app/templates/_package.json

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"gulp-rev": "^6.0.1",
3131
"gulp-sass": "^2.0.4",
3232
"gulp-shell": "^0.5.1",
33-
"gulp-strip-css-comments": "^1.2.0",
3433
"gulp-strip-debug": "^1.1.0",
3534
"gulp-uglify": "^1.5.1",
3635
"gulp-util": "^3.0.7",
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
/**
22
* Define variables here
3+
*
4+
* e.g. $textColor: #ccc;
35
*/
46

5-
$textColor: #ccc;
7+
8+
9+
10+
11+
/**
12+
* Override Ionic variables here
13+
*
14+
* e.g. $positive: #387ef5 !default;
15+
*/

generators/app/templates/src/styles/ionic-styles.scss

-8
This file was deleted.

generators/app/templates/src/styles/main.scss

+13-3
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,33 @@
44
*
55
************************************/
66

7+
/**
8+
* Ionic & custor variables
9+
*/
710
@import "_variables";
811

12+
13+
/**
14+
* Vendor / Ionic styles
15+
*/
16+
@import 'bower_components/ionic/scss/ionic';
17+
18+
919
/**
10-
* LAYOUT
20+
* Layout
1121
*/
1222

1323
@import "layout/layout";
1424

1525

1626
/**
17-
* MENU
27+
* Menu
1828
*/
1929

2030
@import "menu/menu";
2131

2232
/**
23-
* VIEWS
33+
* Views
2434
*/
2535

2636
@import "views/home";

test/app.js

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ describe('generator-ionic-incubator:app', function() {
6969
it('copied scss files', function() {
7070
assert.file([
7171
'src/styles/_variables.scss',
72-
'src/styles/ionic-styles.scss',
7372
'src/styles/main.scss',
7473
'src/styles/layout/layout.scss',
7574
'src/styles/menu/menu.scss',

0 commit comments

Comments
 (0)