Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann-S <johann.servoire@gmail.com>2015-09-08 17:31:47 +0300
committerJohann-S <johann.servoire@gmail.com>2015-12-30 00:53:13 +0300
commita07fdc9541f2a4d852c6b18e5060052c8cbb7ebd (patch)
treeea0f4041e478c9af31a4390c4f731c43f328915f /Gruntfile.js
parent79abc087013b0f0ae93b4b7877456282ae29974d (diff)
Add source map
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js15
1 files changed, 12 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 2c3c186..44c8fe3 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -192,7 +192,10 @@ module.exports = function (grunt) {
},
ratchet: {
src: '<%= meta.distPath %>css/<%= pkg.name %>.css',
- dest: '<%= meta.distPath %>css/<%= pkg.name %>.min.css'
+ dest: '<%= meta.distPath %>css/<%= pkg.name %>.min.css',
+ options: {
+ sourceMap: true
+ }
},
theme: {
files: {
@@ -205,7 +208,10 @@ module.exports = function (grunt) {
'<%= meta.docsAssetsPath %>css/docs.css',
'<%= meta.docsAssetsPath %>css/pygments-manni.css'
],
- dest: '<%= meta.docsAssetsPath %>css/docs.min.css'
+ dest: '<%= meta.docsAssetsPath %>css/docs.min.css',
+ options: {
+ sourceMap: true
+ }
}
},
@@ -220,7 +226,10 @@ module.exports = function (grunt) {
},
ratchet: {
src: '<%= concat.ratchet.dest %>',
- dest: '<%= meta.distPath %>js/<%= pkg.name %>.min.js'
+ dest: '<%= meta.distPath %>js/<%= pkg.name %>.min.js',
+ options: {
+ sourceMap: true
+ }
},
docs: {
src: [