@zipify/wysiwyg 1.1.0-2 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. package/dist/cli.js +1 -1
  2. package/dist/wysiwyg.mjs +10 -17
  3. package/lib/extensions/Alignment.js +10 -8
  4. package/lib/extensions/FontSize.js +8 -3
  5. package/lib/extensions/LineHeight.js +10 -4
  6. package/lib/extensions/__tests__/__snapshots__/Alignment.test.js.snap +3 -3
  7. package/lib/extensions/__tests__/__snapshots__/FontSize.test.js.snap +9 -9
  8. package/lib/extensions/__tests__/__snapshots__/LineHeight.test.js.snap +5 -5
  9. package/lib/services/NodeFactory.js +4 -1
  10. package/node_modules_lambda/acorn-globals/node_modules/.bin/acorn +4 -0
  11. package/node_modules_lambda/acorn-globals/node_modules/acorn/CHANGELOG.md +620 -0
  12. package/node_modules_lambda/acorn-globals/node_modules/acorn/LICENSE +21 -0
  13. package/node_modules_lambda/acorn-globals/node_modules/acorn/README.md +269 -0
  14. package/node_modules_lambda/acorn-globals/node_modules/acorn/bin/acorn +4 -0
  15. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.d.ts +209 -0
  16. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.js +5186 -0
  17. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.js.map +1 -0
  18. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs +5155 -0
  19. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
  20. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs.map +1 -0
  21. package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/bin.js +64 -0
  22. package/node_modules_lambda/acorn-globals/node_modules/acorn/package.json +35 -0
  23. package/node_modules_lambda/cssstyle/node_modules/cssom/LICENSE.txt +20 -0
  24. package/node_modules_lambda/cssstyle/node_modules/cssom/README.mdown +67 -0
  25. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
  26. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
  27. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSHostRule.js +37 -0
  28. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSImportRule.js +132 -0
  29. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
  30. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
  31. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSMediaRule.js +41 -0
  32. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSOM.js +3 -0
  33. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSRule.js +43 -0
  34. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
  35. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleRule.js +190 -0
  36. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
  37. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
  38. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSValue.js +43 -0
  39. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSValueExpression.js +344 -0
  40. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/MatcherList.js +62 -0
  41. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/MediaList.js +61 -0
  42. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/StyleSheet.js +17 -0
  43. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/clone.js +82 -0
  44. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/index.js +21 -0
  45. package/node_modules_lambda/cssstyle/node_modules/cssom/lib/parse.js +464 -0
  46. package/node_modules_lambda/cssstyle/node_modules/cssom/package.json +18 -0
  47. package/node_modules_lambda/data-urls/node_modules/whatwg-url/LICENSE.txt +21 -0
  48. package/node_modules_lambda/data-urls/node_modules/whatwg-url/README.md +106 -0
  49. package/node_modules_lambda/data-urls/node_modules/whatwg-url/index.js +27 -0
  50. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/Function.js +42 -0
  51. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URL-impl.js +209 -0
  52. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URL.js +442 -0
  53. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js +130 -0
  54. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js +472 -0
  55. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
  56. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/encoding.js +16 -0
  57. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/infra.js +26 -0
  58. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
  59. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/url-state-machine.js +1244 -0
  60. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/urlencoded.js +106 -0
  61. package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/utils.js +190 -0
  62. package/node_modules_lambda/data-urls/node_modules/whatwg-url/package.json +58 -0
  63. package/node_modules_lambda/data-urls/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
  64. package/node_modules_lambda/escodegen/node_modules/estraverse/.jshintrc +16 -0
  65. package/node_modules_lambda/escodegen/node_modules/estraverse/LICENSE.BSD +19 -0
  66. package/node_modules_lambda/escodegen/node_modules/estraverse/README.md +153 -0
  67. package/node_modules_lambda/escodegen/node_modules/estraverse/estraverse.js +805 -0
  68. package/node_modules_lambda/escodegen/node_modules/estraverse/gulpfile.js +70 -0
  69. package/node_modules_lambda/escodegen/node_modules/estraverse/package.json +40 -0
  70. package/node_modules_lambda/escodegen/node_modules/levn/LICENSE +22 -0
  71. package/node_modules_lambda/escodegen/node_modules/levn/README.md +196 -0
  72. package/node_modules_lambda/escodegen/node_modules/levn/lib/cast.js +298 -0
  73. package/node_modules_lambda/escodegen/node_modules/levn/lib/coerce.js +285 -0
  74. package/node_modules_lambda/escodegen/node_modules/levn/lib/index.js +22 -0
  75. package/node_modules_lambda/escodegen/node_modules/levn/lib/parse-string.js +113 -0
  76. package/node_modules_lambda/escodegen/node_modules/levn/lib/parse.js +102 -0
  77. package/node_modules_lambda/escodegen/node_modules/levn/package.json +47 -0
  78. package/node_modules_lambda/escodegen/node_modules/optionator/CHANGELOG.md +56 -0
  79. package/node_modules_lambda/escodegen/node_modules/optionator/LICENSE +22 -0
  80. package/node_modules_lambda/escodegen/node_modules/optionator/README.md +238 -0
  81. package/node_modules_lambda/escodegen/node_modules/optionator/lib/help.js +260 -0
  82. package/node_modules_lambda/escodegen/node_modules/optionator/lib/index.js +465 -0
  83. package/node_modules_lambda/escodegen/node_modules/optionator/lib/util.js +54 -0
  84. package/node_modules_lambda/escodegen/node_modules/optionator/package.json +44 -0
  85. package/node_modules_lambda/escodegen/node_modules/prelude-ls/CHANGELOG.md +99 -0
  86. package/node_modules_lambda/escodegen/node_modules/prelude-ls/LICENSE +22 -0
  87. package/node_modules_lambda/escodegen/node_modules/prelude-ls/README.md +15 -0
  88. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Func.js +65 -0
  89. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/List.js +686 -0
  90. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Num.js +130 -0
  91. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Obj.js +154 -0
  92. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Str.js +92 -0
  93. package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/index.js +178 -0
  94. package/node_modules_lambda/escodegen/node_modules/prelude-ls/package.json +52 -0
  95. package/node_modules_lambda/escodegen/node_modules/source-map/CHANGELOG.md +301 -0
  96. package/node_modules_lambda/escodegen/node_modules/source-map/LICENSE +28 -0
  97. package/node_modules_lambda/escodegen/node_modules/source-map/README.md +742 -0
  98. package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.debug.js +3234 -0
  99. package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.js +3233 -0
  100. package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.min.js +2 -0
  101. package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.min.js.map +1 -0
  102. package/node_modules_lambda/escodegen/node_modules/source-map/lib/array-set.js +121 -0
  103. package/node_modules_lambda/escodegen/node_modules/source-map/lib/base64-vlq.js +140 -0
  104. package/node_modules_lambda/escodegen/node_modules/source-map/lib/base64.js +67 -0
  105. package/node_modules_lambda/escodegen/node_modules/source-map/lib/binary-search.js +111 -0
  106. package/node_modules_lambda/escodegen/node_modules/source-map/lib/mapping-list.js +79 -0
  107. package/node_modules_lambda/escodegen/node_modules/source-map/lib/quick-sort.js +114 -0
  108. package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  109. package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-map-generator.js +425 -0
  110. package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-node.js +413 -0
  111. package/node_modules_lambda/escodegen/node_modules/source-map/lib/util.js +488 -0
  112. package/node_modules_lambda/escodegen/node_modules/source-map/package.json +73 -0
  113. package/node_modules_lambda/escodegen/node_modules/source-map/source-map.d.ts +98 -0
  114. package/node_modules_lambda/escodegen/node_modules/source-map/source-map.js +8 -0
  115. package/node_modules_lambda/escodegen/node_modules/type-check/LICENSE +22 -0
  116. package/node_modules_lambda/escodegen/node_modules/type-check/README.md +210 -0
  117. package/node_modules_lambda/escodegen/node_modules/type-check/lib/check.js +126 -0
  118. package/node_modules_lambda/escodegen/node_modules/type-check/lib/index.js +16 -0
  119. package/node_modules_lambda/escodegen/node_modules/type-check/lib/parse-type.js +196 -0
  120. package/node_modules_lambda/escodegen/node_modules/type-check/package.json +40 -0
  121. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/.github/dependabot.yml +11 -0
  122. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/Changelog.md +212 -0
  123. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/LICENSE +21 -0
  124. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/README.md +130 -0
  125. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
  126. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
  127. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/index.js +23 -0
  128. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/internal.js +198 -0
  129. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  130. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  131. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  132. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  133. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  134. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  135. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  136. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  137. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  138. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  139. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  140. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf16.js +197 -0
  141. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf32.js +319 -0
  142. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf7.js +290 -0
  143. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  144. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/index.d.ts +41 -0
  145. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/index.js +180 -0
  146. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/streams.js +109 -0
  147. package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/package.json +44 -0
  148. package/package.json +1 -1
@@ -0,0 +1,301 @@
1
+ # Change Log
2
+
3
+ ## 0.5.6
4
+
5
+ * Fix for regression when people were using numbers as names in source maps. See
6
+ #236.
7
+
8
+ ## 0.5.5
9
+
10
+ * Fix "regression" of unsupported, implementation behavior that half the world
11
+ happens to have come to depend on. See #235.
12
+
13
+ * Fix regression involving function hoisting in SpiderMonkey. See #233.
14
+
15
+ ## 0.5.4
16
+
17
+ * Large performance improvements to source-map serialization. See #228 and #229.
18
+
19
+ ## 0.5.3
20
+
21
+ * Do not include unnecessary distribution files. See
22
+ commit ef7006f8d1647e0a83fdc60f04f5a7ca54886f86.
23
+
24
+ ## 0.5.2
25
+
26
+ * Include browser distributions of the library in package.json's `files`. See
27
+ issue #212.
28
+
29
+ ## 0.5.1
30
+
31
+ * Fix latent bugs in IndexedSourceMapConsumer.prototype._parseMappings. See
32
+ ff05274becc9e6e1295ed60f3ea090d31d843379.
33
+
34
+ ## 0.5.0
35
+
36
+ * Node 0.8 is no longer supported.
37
+
38
+ * Use webpack instead of dryice for bundling.
39
+
40
+ * Big speedups serializing source maps. See pull request #203.
41
+
42
+ * Fix a bug with `SourceMapConsumer.prototype.sourceContentFor` and sources that
43
+ explicitly start with the source root. See issue #199.
44
+
45
+ ## 0.4.4
46
+
47
+ * Fix an issue where using a `SourceMapGenerator` after having created a
48
+ `SourceMapConsumer` from it via `SourceMapConsumer.fromSourceMap` failed. See
49
+ issue #191.
50
+
51
+ * Fix an issue with where `SourceMapGenerator` would mistakenly consider
52
+ different mappings as duplicates of each other and avoid generating them. See
53
+ issue #192.
54
+
55
+ ## 0.4.3
56
+
57
+ * A very large number of performance improvements, particularly when parsing
58
+ source maps. Collectively about 75% of time shaved off of the source map
59
+ parsing benchmark!
60
+
61
+ * Fix a bug in `SourceMapConsumer.prototype.allGeneratedPositionsFor` and fuzzy
62
+ searching in the presence of a column option. See issue #177.
63
+
64
+ * Fix a bug with joining a source and its source root when the source is above
65
+ the root. See issue #182.
66
+
67
+ * Add the `SourceMapConsumer.prototype.hasContentsOfAllSources` method to
68
+ determine when all sources' contents are inlined into the source map. See
69
+ issue #190.
70
+
71
+ ## 0.4.2
72
+
73
+ * Add an `.npmignore` file so that the benchmarks aren't pulled down by
74
+ dependent projects. Issue #169.
75
+
76
+ * Add an optional `column` argument to
77
+ `SourceMapConsumer.prototype.allGeneratedPositionsFor` and better handle lines
78
+ with no mappings. Issues #172 and #173.
79
+
80
+ ## 0.4.1
81
+
82
+ * Fix accidentally defining a global variable. #170.
83
+
84
+ ## 0.4.0
85
+
86
+ * The default direction for fuzzy searching was changed back to its original
87
+ direction. See #164.
88
+
89
+ * There is now a `bias` option you can supply to `SourceMapConsumer` to control
90
+ the fuzzy searching direction. See #167.
91
+
92
+ * About an 8% speed up in parsing source maps. See #159.
93
+
94
+ * Added a benchmark for parsing and generating source maps.
95
+
96
+ ## 0.3.0
97
+
98
+ * Change the default direction that searching for positions fuzzes when there is
99
+ not an exact match. See #154.
100
+
101
+ * Support for environments using json2.js for JSON serialization. See #156.
102
+
103
+ ## 0.2.0
104
+
105
+ * Support for consuming "indexed" source maps which do not have any remote
106
+ sections. See pull request #127. This introduces a minor backwards
107
+ incompatibility if you are monkey patching `SourceMapConsumer.prototype`
108
+ methods.
109
+
110
+ ## 0.1.43
111
+
112
+ * Performance improvements for `SourceMapGenerator` and `SourceNode`. See issue
113
+ #148 for some discussion and issues #150, #151, and #152 for implementations.
114
+
115
+ ## 0.1.42
116
+
117
+ * Fix an issue where `SourceNode`s from different versions of the source-map
118
+ library couldn't be used in conjunction with each other. See issue #142.
119
+
120
+ ## 0.1.41
121
+
122
+ * Fix a bug with getting the source content of relative sources with a "./"
123
+ prefix. See issue #145 and [Bug 1090768](bugzil.la/1090768).
124
+
125
+ * Add the `SourceMapConsumer.prototype.computeColumnSpans` method to compute the
126
+ column span of each mapping.
127
+
128
+ * Add the `SourceMapConsumer.prototype.allGeneratedPositionsFor` method to find
129
+ all generated positions associated with a given original source and line.
130
+
131
+ ## 0.1.40
132
+
133
+ * Performance improvements for parsing source maps in SourceMapConsumer.
134
+
135
+ ## 0.1.39
136
+
137
+ * Fix a bug where setting a source's contents to null before any source content
138
+ had been set before threw a TypeError. See issue #131.
139
+
140
+ ## 0.1.38
141
+
142
+ * Fix a bug where finding relative paths from an empty path were creating
143
+ absolute paths. See issue #129.
144
+
145
+ ## 0.1.37
146
+
147
+ * Fix a bug where if the source root was an empty string, relative source paths
148
+ would turn into absolute source paths. Issue #124.
149
+
150
+ ## 0.1.36
151
+
152
+ * Allow the `names` mapping property to be an empty string. Issue #121.
153
+
154
+ ## 0.1.35
155
+
156
+ * A third optional parameter was added to `SourceNode.fromStringWithSourceMap`
157
+ to specify a path that relative sources in the second parameter should be
158
+ relative to. Issue #105.
159
+
160
+ * If no file property is given to a `SourceMapGenerator`, then the resulting
161
+ source map will no longer have a `null` file property. The property will
162
+ simply not exist. Issue #104.
163
+
164
+ * Fixed a bug where consecutive newlines were ignored in `SourceNode`s.
165
+ Issue #116.
166
+
167
+ ## 0.1.34
168
+
169
+ * Make `SourceNode` work with windows style ("\r\n") newlines. Issue #103.
170
+
171
+ * Fix bug involving source contents and the
172
+ `SourceMapGenerator.prototype.applySourceMap`. Issue #100.
173
+
174
+ ## 0.1.33
175
+
176
+ * Fix some edge cases surrounding path joining and URL resolution.
177
+
178
+ * Add a third parameter for relative path to
179
+ `SourceMapGenerator.prototype.applySourceMap`.
180
+
181
+ * Fix issues with mappings and EOLs.
182
+
183
+ ## 0.1.32
184
+
185
+ * Fixed a bug where SourceMapConsumer couldn't handle negative relative columns
186
+ (issue 92).
187
+
188
+ * Fixed test runner to actually report number of failed tests as its process
189
+ exit code.
190
+
191
+ * Fixed a typo when reporting bad mappings (issue 87).
192
+
193
+ ## 0.1.31
194
+
195
+ * Delay parsing the mappings in SourceMapConsumer until queried for a source
196
+ location.
197
+
198
+ * Support Sass source maps (which at the time of writing deviate from the spec
199
+ in small ways) in SourceMapConsumer.
200
+
201
+ ## 0.1.30
202
+
203
+ * Do not join source root with a source, when the source is a data URI.
204
+
205
+ * Extend the test runner to allow running single specific test files at a time.
206
+
207
+ * Performance improvements in `SourceNode.prototype.walk` and
208
+ `SourceMapConsumer.prototype.eachMapping`.
209
+
210
+ * Source map browser builds will now work inside Workers.
211
+
212
+ * Better error messages when attempting to add an invalid mapping to a
213
+ `SourceMapGenerator`.
214
+
215
+ ## 0.1.29
216
+
217
+ * Allow duplicate entries in the `names` and `sources` arrays of source maps
218
+ (usually from TypeScript) we are parsing. Fixes github issue 72.
219
+
220
+ ## 0.1.28
221
+
222
+ * Skip duplicate mappings when creating source maps from SourceNode; github
223
+ issue 75.
224
+
225
+ ## 0.1.27
226
+
227
+ * Don't throw an error when the `file` property is missing in SourceMapConsumer,
228
+ we don't use it anyway.
229
+
230
+ ## 0.1.26
231
+
232
+ * Fix SourceNode.fromStringWithSourceMap for empty maps. Fixes github issue 70.
233
+
234
+ ## 0.1.25
235
+
236
+ * Make compatible with browserify
237
+
238
+ ## 0.1.24
239
+
240
+ * Fix issue with absolute paths and `file://` URIs. See
241
+ https://bugzilla.mozilla.org/show_bug.cgi?id=885597
242
+
243
+ ## 0.1.23
244
+
245
+ * Fix issue with absolute paths and sourcesContent, github issue 64.
246
+
247
+ ## 0.1.22
248
+
249
+ * Ignore duplicate mappings in SourceMapGenerator. Fixes github issue 21.
250
+
251
+ ## 0.1.21
252
+
253
+ * Fixed handling of sources that start with a slash so that they are relative to
254
+ the source root's host.
255
+
256
+ ## 0.1.20
257
+
258
+ * Fixed github issue #43: absolute URLs aren't joined with the source root
259
+ anymore.
260
+
261
+ ## 0.1.19
262
+
263
+ * Using Travis CI to run tests.
264
+
265
+ ## 0.1.18
266
+
267
+ * Fixed a bug in the handling of sourceRoot.
268
+
269
+ ## 0.1.17
270
+
271
+ * Added SourceNode.fromStringWithSourceMap.
272
+
273
+ ## 0.1.16
274
+
275
+ * Added missing documentation.
276
+
277
+ * Fixed the generating of empty mappings in SourceNode.
278
+
279
+ ## 0.1.15
280
+
281
+ * Added SourceMapGenerator.applySourceMap.
282
+
283
+ ## 0.1.14
284
+
285
+ * The sourceRoot is now handled consistently.
286
+
287
+ ## 0.1.13
288
+
289
+ * Added SourceMapGenerator.fromSourceMap.
290
+
291
+ ## 0.1.12
292
+
293
+ * SourceNode now generates empty mappings too.
294
+
295
+ ## 0.1.11
296
+
297
+ * Added name support to SourceNode.
298
+
299
+ ## 0.1.10
300
+
301
+ * Added sourcesContent support to the customer and generator.
@@ -0,0 +1,28 @@
1
+
2
+ Copyright (c) 2009-2011, Mozilla Foundation and contributors
3
+ All rights reserved.
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ * Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ * Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ * Neither the names of the Mozilla Foundation nor the names of project
16
+ contributors may be used to endorse or promote products derived from this
17
+ software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.