Skip to content

Commit 89ae8b5

Browse files
committedFeb 22, 2019
Odstraneni LESSu
1 parent 260af75 commit 89ae8b5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+5
-6766
lines changed
 

‎Gruntfile.js

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,6 @@ module.exports = function(grunt) {
77

88
grunt.initConfig({
99

10-
less: {
11-
default: {
12-
files: {
13-
"css/style.css": "less/index.less"
14-
},
15-
options: {
16-
sourceMap: true,
17-
sourceMapFilename: "css/style.css.map",
18-
sourceMapURL: "style.css.map",
19-
sourceMapRootpath: ""
20-
}
21-
}
22-
},
23-
2410
sass: {
2511
options: {
2612
implementation: sass,
@@ -58,7 +44,7 @@ module.exports = function(grunt) {
5844

5945
prettier: {
6046
css: {
61-
src: ["less/**/*.less", "!less/lib/**/*"]
47+
src: ["scss/**/*.scss", "!scss/lib/**/*"]
6248
},
6349
js: {
6450
src: ["Gruntfile.js", "js/*.js"]
@@ -67,19 +53,19 @@ module.exports = function(grunt) {
6753

6854
stylelint: {
6955
options: {
70-
syntax: "less"
56+
syntax: "scss"
7157
},
72-
src: ["less/**/*.less"]
58+
src: ["scss/**/*.scss"]
7359
},
7460

7561
watch: {
7662
default: {
77-
files: ["less/**/*.less"],
63+
files: ["scss/**/*.scss"],
7864
tasks: ["css"]
7965
}
8066
}
8167
});
8268

83-
grunt.registerTask("css", ["less", "postcss"]);
69+
grunt.registerTask("css", ["scss", "postcss"]);
8470
grunt.registerTask("default", ["browserSync", "watch"]);
8571
};

‎less/base/body.less

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

0 commit comments

Comments
 (0)
Please sign in to comment.