]> git.r.bdr.sh - rbdr/dotfiles/blob
2e7ca5d27b8dbd87d8387c48e7c11b04f755eb91
[rbdr/dotfiles] /
1 # Change Log
2
3 ## 0.1.43
4
5 * Performance improvements for `SourceMapGenerator` and `SourceNode`. See issue
6 #148 for some discussion and issues #150, #151, and #152 for implementations.
7
8 ## 0.1.42
9
10 * Fix an issue where `SourceNode`s from different versions of the source-map
11 library couldn't be used in conjunction with each other. See issue #142.
12
13 ## 0.1.41
14
15 * Fix a bug with getting the source content of relative sources with a "./"
16 prefix. See issue #145 and [Bug 1090768](bugzil.la/1090768).
17
18 * Add the `SourceMapConsumer.prototype.computeColumnSpans` method to compute the
19 column span of each mapping.
20
21 * Add the `SourceMapConsumer.prototype.allGeneratedPositionsFor` method to find
22 all generated positions associated with a given original source and line.
23
24 ## 0.1.40
25
26 * Performance improvements for parsing source maps in SourceMapConsumer.
27
28 ## 0.1.39
29
30 * Fix a bug where setting a source's contents to null before any source content
31 had been set before threw a TypeError. See issue #131.
32
33 ## 0.1.38
34
35 * Fix a bug where finding relative paths from an empty path were creating
36 absolute paths. See issue #129.
37
38 ## 0.1.37
39
40 * Fix a bug where if the source root was an empty string, relative source paths
41 would turn into absolute source paths. Issue #124.
42
43 ## 0.1.36
44
45 * Allow the `names` mapping property to be an empty string. Issue #121.
46
47 ## 0.1.35
48
49 * A third optional parameter was added to `SourceNode.fromStringWithSourceMap`
50 to specify a path that relative sources in the second parameter should be
51 relative to. Issue #105.
52
53 * If no file property is given to a `SourceMapGenerator`, then the resulting
54 source map will no longer have a `null` file property. The property will
55 simply not exist. Issue #104.
56
57 * Fixed a bug where consecutive newlines were ignored in `SourceNode`s.
58 Issue #116.
59
60 ## 0.1.34
61
62 * Make `SourceNode` work with windows style ("\r\n") newlines. Issue #103.
63
64 * Fix bug involving source contents and the
65 `SourceMapGenerator.prototype.applySourceMap`. Issue #100.
66
67 ## 0.1.33
68
69 * Fix some edge cases surrounding path joining and URL resolution.
70
71 * Add a third parameter for relative path to
72 `SourceMapGenerator.prototype.applySourceMap`.
73
74 * Fix issues with mappings and EOLs.
75
76 ## 0.1.32
77
78 * Fixed a bug where SourceMapConsumer couldn't handle negative relative columns
79 (issue 92).
80
81 * Fixed test runner to actually report number of failed tests as its process
82 exit code.
83
84 * Fixed a typo when reporting bad mappings (issue 87).
85
86 ## 0.1.31
87
88 * Delay parsing the mappings in SourceMapConsumer until queried for a source
89 location.
90
91 * Support Sass source maps (which at the time of writing deviate from the spec
92 in small ways) in SourceMapConsumer.
93
94 ## 0.1.30
95
96 * Do not join source root with a source, when the source is a data URI.
97
98 * Extend the test runner to allow running single specific test files at a time.
99
100 * Performance improvements in `SourceNode.prototype.walk` and
101 `SourceMapConsumer.prototype.eachMapping`.
102
103 * Source map browser builds will now work inside Workers.
104
105 * Better error messages when attempting to add an invalid mapping to a
106 `SourceMapGenerator`.
107
108 ## 0.1.29
109
110 * Allow duplicate entries in the `names` and `sources` arrays of source maps
111 (usually from TypeScript) we are parsing. Fixes github issue 72.
112
113 ## 0.1.28
114
115 * Skip duplicate mappings when creating source maps from SourceNode; github
116 issue 75.
117
118 ## 0.1.27
119
120 * Don't throw an error when the `file` property is missing in SourceMapConsumer,
121 we don't use it anyway.
122
123 ## 0.1.26
124
125 * Fix SourceNode.fromStringWithSourceMap for empty maps. Fixes github issue 70.
126
127 ## 0.1.25
128
129 * Make compatible with browserify
130
131 ## 0.1.24
132
133 * Fix issue with absolute paths and `file://` URIs. See
134 https://bugzilla.mozilla.org/show_bug.cgi?id=885597
135
136 ## 0.1.23
137
138 * Fix issue with absolute paths and sourcesContent, github issue 64.
139
140 ## 0.1.22
141
142 * Ignore duplicate mappings in SourceMapGenerator. Fixes github issue 21.
143
144 ## 0.1.21
145
146 * Fixed handling of sources that start with a slash so that they are relative to
147 the source root's host.
148
149 ## 0.1.20
150
151 * Fixed github issue #43: absolute URLs aren't joined with the source root
152 anymore.
153
154 ## 0.1.19
155
156 * Using Travis CI to run tests.
157
158 ## 0.1.18
159
160 * Fixed a bug in the handling of sourceRoot.
161
162 ## 0.1.17
163
164 * Added SourceNode.fromStringWithSourceMap.
165
166 ## 0.1.16
167
168 * Added missing documentation.
169
170 * Fixed the generating of empty mappings in SourceNode.
171
172 ## 0.1.15
173
174 * Added SourceMapGenerator.applySourceMap.
175
176 ## 0.1.14
177
178 * The sourceRoot is now handled consistently.
179
180 ## 0.1.13
181
182 * Added SourceMapGenerator.fromSourceMap.
183
184 ## 0.1.12
185
186 * SourceNode now generates empty mappings too.
187
188 ## 0.1.11
189
190 * Added name support to SourceNode.
191
192 ## 0.1.10
193
194 * Added sourcesContent support to the customer and generator.