Skip to content

Commit ca03d4a

Browse files
author
John Vilk
committed
Git repo rename.
1 parent 19e0815 commit ca03d4a

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ Thus, the JavaScript file alone is all that is needed to debug your program with
8181
embedded source maps.
8282
Perfect for scenarios where bandwidth is not an issue, such as Node projects or debug builds.
8383

84+
Grunt configuration:
85+
8486
```js
8587
"merge-source-maps": {
8688
foo: {
@@ -109,6 +111,8 @@ With this setup, the generated JavaScript file will have a corresponding `.map`
109111
The debugger will only need the JavaScript file and the map file to debug the code with source maps.
110112
Perfect for production web projects, where you want small, minified JavaScript files but also want to be able to debug the original source code.
111113

114+
Grunt configuration:
115+
112116
```js
113117
"merge-source-maps": {
114118
foo: {
@@ -124,6 +128,8 @@ Perfect for production web projects, where you want small, minified JavaScript f
124128
}
125129
```
126130

131+
On the command line:
132+
127133
```
128134
merge-source-maps --inline-sources build/*.js
129135
```
@@ -137,6 +143,8 @@ Ideal if you are already planning on hosting the original source files for some
137143
embedded within the source map.
138144
Also ideal if your debugger does not support embedded source code in source maps.
139145

146+
Grunt configuration:
147+
140148
```js
141149
"merge-source-maps": {
142150
foo: {
@@ -149,6 +157,8 @@ Also ideal if your debugger does not support embedded source code in source maps
149157
}
150158
```
151159

160+
On the command line:
161+
152162
```
153163
merge-source-maps build/*.js
154164
```

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Library, command-line tool, and Grunt task for merging multiple source maps from compilation phases into a single source map.",
55
"repository": {
66
"type": "git",
7-
"url": "git+https://github.com/jvilk/grunt-merge-source-maps.git"
7+
"url": "git+https://github.com/jvilk/merge-source-maps.git"
88
},
99
"bin": {
1010
"merge-source-maps": "./bin/merge-source-maps.js"
@@ -18,9 +18,9 @@
1818
},
1919
"license": "MIT",
2020
"bugs": {
21-
"url": "https://github.com/jvilk/grunt-merge-source-maps/issues"
21+
"url": "https://github.com/jvilk/merge-source-maps/issues"
2222
},
23-
"homepage": "https://github.com/jvilk/grunt-merge-source-maps#readme",
23+
"homepage": "https://github.com/jvilk/merge-source-maps#readme",
2424
"dependencies": {
2525
"source-map": "^0.5.6",
2626
"underscore": "^1.8.3",

0 commit comments

Comments
 (0)