James Coglan
1f2f4ce4f3
Correct relative pathnames in source maps.
...
Say you have a file called `src/thing.js` and you run
$ babel src/thing.js --out-file lib/thing.js --source-maps true
This generates a source map at `lib/thing.js.map` that contains
"src/thing.js" in its `sources` array. This is incorrect; since browsers
resolve all relative URLs relative to the directory containing the file
that refers to the URL, this resolves to `lib/src/thing.js`.
To make the source map refer to the source files correctly, the
`sources` array should contain "../src/thing.js".
2015-04-13 21:17:11 +01:00
Sebastian McKenzie
83324b977d
Merge branch 'master' of github.com:babel/babel
...
# Conflicts:
# packages/babel-cli/package.json
2015-04-09 06:46:26 -07:00
Paul Miller
84439384c0
Update to stable chokidar.
2015-04-09 16:45:30 +03:00
Sebastian McKenzie
1e398e45ff
5.0.12
2015-04-09 06:44:06 -07:00
Sebastian McKenzie
d114349890
5.0.11
2015-04-08 08:15:15 -07:00
Sebastian McKenzie
1374863b9c
5.0.10
2015-04-07 18:06:52 -07:00
Sebastian McKenzie
96506f4249
5.0.9
2015-04-07 09:20:40 -07:00
chocolateboy
88941b3270
babel-node --print: don't mangle percent characters (%)
...
This applies the babel fix in #528 to babel-node.
before:
$ babel-node --print --eval '"%%"'
'%'
after:
$ babel-node --print --eval '"%%"'
'%%'
2015-04-05 06:26:29 +01:00
Sebastian McKenzie
dc98ac7c93
5.0.8
2015-04-04 17:09:35 +11:00
Sebastian McKenzie
54c6339f20
5.0.7
2015-04-04 04:51:24 +11:00
Sebastian McKenzie
db9ed0235f
finally fix cli tests
2015-04-04 04:39:28 +11:00
Sebastian McKenzie
6c98d39937
grr, debugging travis builds is hard
2015-04-04 04:01:35 +11:00
Sebastian McKenzie
20651df3ce
try and fix babel cli bootstrap
2015-04-04 03:47:47 +11:00
Sebastian McKenzie
67201e9698
add ignore/only option to cli
2015-04-04 03:31:19 +11:00
Sebastian McKenzie
5f91ee8a1a
5.0.6
2015-04-03 23:15:34 +11:00
Sebastian McKenzie
76d0fb4ba6
5.0.5
2015-04-03 22:44:16 +11:00
Sebastian McKenzie
20f28aba64
5.0.4
2015-04-03 15:34:20 +11:00
Cesar Andreu
bad877946f
Add README.md to babel-cli
2015-04-02 21:31:47 -07:00
Sebastian McKenzie
9f467ef7c0
5.0.3
2015-04-03 15:29:16 +11:00
Sebastian McKenzie
313f1e755a
5.0.2
2015-04-03 06:55:53 +11:00
Sebastian McKenzie
bf811ea34a
5.0.1
2015-04-03 06:47:47 +11:00
Sebastian McKenzie
a9e214b1db
fix build cli script
2015-04-03 05:48:02 +11:00
Sebastian McKenzie
07078138f3
update to core-js 0.8.0
2015-04-03 02:37:02 +11:00
Sebastian McKenzie
e164123ce9
remove packages README
2015-04-03 00:33:48 +11:00
Sebastian McKenzie
15d31b5608
move babel cli into separate folder #1097
2015-04-02 23:12:05 +11:00
Sebastian McKenzie
3686951dc1
5.0.0-beta4
2015-04-01 14:07:41 +11:00
Sebastian McKenzie
6bc2bfce7d
rename runtimeES3 transformer to es3.runtime
2015-03-31 02:34:32 +11:00
Sebastian McKenzie
59e07b65dd
downgrade core-js
2015-03-31 01:34:38 +11:00
Sebastian McKenzie
1c7fabdd6d
add runtimeES3 transformer
2015-03-31 01:20:14 +11:00
Sebastian McKenzie
bbba374783
5.0.0-beta3
2015-03-29 16:10:17 +11:00
Sebastian McKenzie
463112517f
5.0.0-beta2
2015-03-28 05:48:27 +11:00
Sebastian McKenzie
dcf4381e26
5.0.0-beta1
2015-03-28 05:45:22 +11:00
Sebastian McKenzie
543582ef47
fix helper filename in build-runtime script
2015-03-28 05:42:55 +11:00
Sebastian McKenzie
8575392606
4.7.16
2015-03-18 23:37:24 +11:00
Sebastian McKenzie
d919d7837c
4.7.15
2015-03-18 19:17:07 +11:00
Sebastian McKenzie
16d8d928e8
4.7.14
2015-03-18 19:14:02 +11:00
Sebastian McKenzie
7f9fe4af15
4.7.13
2015-03-17 12:12:51 +11:00
Sebastian McKenzie
d71c72de3c
4.7.12
2015-03-14 02:39:09 +11:00
Sebastian McKenzie
d0b6aa9882
4.7.11
2015-03-14 02:30:59 +11:00
Sebastian McKenzie
c23b47f796
4.7.10
2015-03-14 02:02:06 +11:00
Sebastian McKenzie
27fc574e9f
4.7.9
2015-03-13 13:33:50 +11:00
Sebastian McKenzie
146b9e6708
4.7.8
2015-03-11 10:17:09 +11:00
Sebastian McKenzie
8ba276b209
4.7.7
2015-03-11 01:25:41 +11:00
Sebastian McKenzie
d436d32d82
4.7.6
2015-03-11 00:13:03 +11:00
Sebastian McKenzie
45953ffc8a
4.7.5
2015-03-10 13:39:04 +11:00
Sebastian McKenzie
6564f1ff76
4.7.4
2015-03-10 06:13:37 +11:00
Sebastian McKenzie
f5db53cebe
remove core-js library from babel-runtime
2015-03-10 06:13:16 +11:00
Sebastian McKenzie
c5d3f42d8a
alias core-js/library in babel-runtime - closes #965
2015-03-09 16:54:19 +11:00
Sebastian McKenzie
2f66ea7338
4.7.3
2015-03-08 04:33:50 +11:00
Sebastian McKenzie
6f53980bfc
move runtime helpers to separate modules - babel/ember-cli-babel#24
2015-03-08 04:04:40 +11:00