Skip to content
This repository was archived by the owner on Aug 5, 2020. It is now read-only.

Commit c6d65c2

Browse files
author
Steve Calvert
committed
Removing sourcemaps
1 parent 231042f commit c6d65c2

File tree

7 files changed

+6
-20
lines changed

7 files changed

+6
-20
lines changed

dist/bellows-theme.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.bellows {
22
-webkit-box-sizing: border-box;
3-
-moz-box-sizing: border-box;
43
box-sizing: border-box; }
54

65
.bellows__header {

dist/bellows-theme.css.map

Lines changed: 0 additions & 7 deletions
This file was deleted.

dist/bellows-theme.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bellows.css.map

Lines changed: 0 additions & 7 deletions
This file was deleted.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"grunt-contrib-connect": "~0.3.0",
1616
"grunt-contrib-watch": "~0.5.1",
1717
"grunt-contrib-copy": "~0.4.1",
18-
"grunt-autoprefixer": "~0.8.0",
19-
"grunt-contrib-sass": "~0.7.3",
18+
"grunt-autoprefixer": "~2.0.0",
19+
"grunt-contrib-sass": "~0.8.1",
2020
"grunt-contrib-jshint": "0.10.0",
2121
"grunt-version": "^0.3.0",
2222
"jshint": "2.5.0",

tasks/config/autoprefixer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = function(grunt) {
22
return {
33
options: {
4-
browsers: ['last 4 versions', 'ie 8', 'ie 9', 'iOS >= 6.0', 'Android 2.3', 'Android 4', 'last 2 Chrome versions']
4+
browsers: ['last 4 versions', 'ie 8', 'ie 9', 'iOS >= 6.0', 'Android >= 2.3', 'last 4 ChromeAndroid versions']
55
},
66
multiple_files: {
77
flatten: true,

tasks/config/sass.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ module.exports = function(grunt) {
22
return {
33
dist: {
44
options: {
5-
style: 'nested'
5+
style: 'nested',
6+
sourcemap: 'none'
67
},
78
files: [{
89
expand: true,

0 commit comments

Comments
 (0)