Mateusz Burzyński
859ea4b175
Scoped: updated numerous docs with scoped packages change [skip ci]
2017-10-16 22:49:57 -04:00
Pranav Prakash
2374062bbd
Remove babel-node from babel-cli ( #6251 )
...
* Remove babel-node from babel-cli
* Use new Array instead of Array for V8 optimization
* Remove extraneous use strict clauses
* Require babel-node in babel-cli
* Remove babel-node from babel-cli
* Require babel-node in babel-cli
* Remove babel-node executable from babel-cli
* Clean up babel-node from package.json
2017-09-23 11:25:27 -07:00
Kai Cataldo
50baac3251
Remove babel-doctor from babel-cli ( #4725 )
...
* Remove babel-doctor from babel-cli
fixes #4678
* Throw when babel-doctor is used
2016-10-14 14:49:16 -04:00
Sebastian McKenzie
5ee8f7568b
add babel-doctor
2015-11-03 10:04:20 +00:00
Sebastian McKenzie
3d21b85d87
add +x bin files that reference the compiled ones
2015-07-12 12:35:49 +01:00
Sebastian McKenzie
fedf894904
Begin transition of Babel to a more scalable architecture, async flow to allow for RPC and better build system for multiple packages
2015-07-11 12:39:54 +01:00
Sebastian McKenzie
ec7c40fbf6
add quiet option to CLI - fixes #1931
2015-07-07 11:26:45 +01:00
Sebastian McKenzie
3b1a9a0adb
trim eval code in babel-node
2015-06-28 00:59:12 +01:00
Sebastian McKenzie
8ab90aacd3
add babel-core version to babel-cli version - closes #1861
2015-06-28 00:59:05 +01:00
Sebastian McKenzie
e34d950793
require babel-core at the top of the file
2015-06-26 01:07:54 +01:00
Sebastian McKenzie
7c4fe984ce
start linting babel-cli/bin - fixes #1836
2015-06-25 23:22:38 +01:00
Sebastian McKenzie
2a3142273d
add path-exists dependency to babel-cli
2015-06-25 23:20:08 +01:00
Mark-Simulacrum
b308602098
Use path-exists instead of fs.exists.
...
fs.exists is being deprecated, see: https://github.com/nodejs/io.js/issues/103 .
2015-06-25 12:39:39 -06:00
Sebastian McKenzie
d10856d16c
don't terminate CLI when watching files fail compilation on init - fixes #1678
2015-06-20 22:14:21 +01:00
Sebastian McKenzie
6a8ecf2507
add uniq to filenames in babel-cli - fixes #1731
2015-06-20 22:04:33 +01:00
Sebastian McKenzie
050bcec617
add messages property to plugin context and add --copy-files flag to babel-plugin build
2015-06-15 18:55:03 +01:00
Sebastian McKenzie
01818a50fa
fix up babel-plugin CLI
2015-06-15 16:36:34 +01:00
Sebastian McKenzie
8b096ac705
start movement of core into plugins
2015-06-15 15:17:04 +01:00
Andres Suarez
a5f6c1c389
Really fix "--help"
2015-06-12 20:54:53 -04:00
Andres Suarez
7e9660efd3
Fix "--help" distinguish optional transforms
2015-06-12 20:51:52 -04:00
Sebastian McKenzie
c9286a1de1
rewrite option handling - fixes #1636
2015-06-10 03:07:06 +01:00
Sebastian McKenzie
fb94a87a4d
add support for cluster forking - fixes #1611
2015-05-28 10:36:29 -04:00
Sebastian McKenzie
0f663560d4
add --nolazy to babel-node - fixes #1639
2015-05-28 10:24:31 -04:00
Sebastian McKenzie
52a2e3e17c
return original input if glob returned nothing in babel-cli - fixes #1591
2015-05-21 10:57:37 +01:00
Sebastian McKenzie
430c5df0e7
rename sourceMapName option to sourceMapTarget - closes #1568
2015-05-20 10:14:28 +01:00
clintwood (Office)
9d3dff3b7a
correct cli source map file: value, honor sourceRoot when using -o option
2015-05-18 10:11:20 +02:00
Sebastian McKenzie
1b15481460
ignore "ignored files" when babel.transform has determined that it should be ignored, this is likely the result of an rc file resolution - fixes #1362
2015-05-15 00:24:03 +01:00
Sebastian McKenzie
ae77ea807f
normalise source map file paths when using the CLI - fixes #1496
2015-05-15 00:05:11 +01:00
Sebastian McKenzie
3c81899ca7
add --harmony_generators to list of node flags - closes #1474 , closes #1473
2015-05-10 20:00:12 +01:00
Sebastian McKenzie
8a4a76000d
correctly arrayify commander extensions - closes #1470 , fixes #1460
2015-05-07 13:55:12 +01:00
Sebastian McKenzie
31a4195c81
fix incorrect extensions variable reference - fixes #1460
2015-05-06 16:23:15 +01:00
Sebastian McKenzie
8ae4e1fdf2
add --harmony_rest_parameters flag to babel-node - fixes #1446
2015-05-06 15:43:51 +01:00
Sebastian McKenzie
3d24cc9ae5
Merge pull request #1224 from jcoglan/fix-source-map-pathnames
...
Correct relative pathnames in source maps.
2015-05-04 00:03:27 +01:00
Sebastian McKenzie
f24b5164d4
add extensions option to babel cli
2015-05-03 22:43:20 +01:00
Sebastian McKenzie
63b44a3e6e
fix transformer and module formatter list in $ babel --help - fixes #1421
2015-05-02 23:16:37 +01:00
jden
b9ca9d42dc
fix formatting per feedback from @sebmck
...
https://github.com/babel/babel/pull/1392#discussion-diff-29454022
2015-04-30 11:06:51 -07:00
jden
479c3e477a
process glob matching in babel-cli (windows compat)
2015-04-30 10:57:48 -07:00
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
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
db9ed0235f
finally fix cli tests
2015-04-04 04:39:28 +11:00
Sebastian McKenzie
67201e9698
add ignore/only option to cli
2015-04-04 03:31:19 +11:00
Sebastian McKenzie
15d31b5608
move babel cli into separate folder #1097
2015-04-02 23:12:05 +11:00