Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganize the docs. #1041

Merged
merged 11 commits into from
Dec 6, 2016
34 changes: 17 additions & 17 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
- title: Learn ES2015
url: /docs/learn-es2015/
- title: Setup
url: /docs/setup/
- title: Plugins
url: /docs/plugins/
- title: Usage
url: /docs/usage/
url: /learn-es2015/
- title: Docs
url: /docs
subnav:
- title: Options
url: /docs/usage/options/
- title: Setup
url: /docs/setup/
- title: Plugins
url: /docs/plugins/
- title: Polyfill
url: /docs/usage/polyfill/
- title: Caveats
url: /docs/usage/caveats/
- title: babelrc
url: /docs/usage/babelrc/
- title: Editors
url: /docs/editors
- title: API
url: /docs/usage/api/
- title: CLI
url: /docs/usage/cli/
- title: Polyfill
url: /docs/usage/polyfill/
- title: babel-register
url: /docs/usage/babel-register/
- title: API
url: /docs/usage/api/
- title: Browser
url: /docs/usage/browser/
- title: .babelrc
url: /docs/usage/babelrc/
- title: Try it out
url: /repl/
- title: Blog
url: /blog/
- title: FAQ
url: /docs/faq
3 changes: 0 additions & 3 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@
<li>
<a href="https://slack.babeljs.io/">Slack</a>
</li>
<li {% if page.url contains "/blog/" %}class="active"{% endif %}>
<a href="{{ site.baseurl }}/blog/">Blog</a>
</li>
<li>
<a href="https://twitter.com/babeljs">Twitter</a>
</li>
Expand Down
11 changes: 11 additions & 0 deletions _includes/tools/browser/install.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<blockquote class="babel-callout babel-callout-warning">
<p>

</p>
<p>
Compiling in the browser has a fairly limited use case, so if you are
working on a production site you should be precompiling your scripts
server-side. See <a href="/docs/setup/#build-systems">setup build systems</a>
for more information.
</p>
</blockquote>

You can use [babel/babel-standalone](https://github.com/babel/babel-standalone#usage) as a precompiled version of babel or run a bundler on babel yourself.

Expand Down
38 changes: 38 additions & 0 deletions docs/editors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
layout: docs
title: Editors
description: Learn how to use Babel in the editor of choice
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be (emphasis mine):

Learn how to use Babel in your editor of choice

permalink: /docs/editors
---

## Syntax Highlighting

Most popular editors these days do support ES2015+ syntax highlighting.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about:

These days, many popular editors support ES2015+ syntax highlighting out of the box, while some require installing additional extensions.

Some of them require installing additional extensions while some others
don't. This guide should help you get the syntax highlighting to work.

If you're looking for more advanced integrations, you may want to
take a look at the [Setup](/docs/setup) guide.

### Atom

Install [language-babel](https://atom.io/packages/language-babel) package
and follow the [instructions](https://github.com/gandm/language-babel#installation).

### Sublime Text 3

First, [install Package Control](https://packagecontrol.io/installation).
Then install [Babel](https://packagecontrol.io/packages/Babel) package
from the Package Control menu and follow
the [instructions](https://github.com/babel/babel-sublime#installation).

### Visual Studio Code

Install [Babel ES6/ES7](https://marketplace.visualstudio.com/items?itemName=dzannotti.vscode-babel-coloring)
extension and follow the instructions.

### WebStorm

Seems like WebStorm now ships with support for ES2015+ without requiring you
to install additional extensions. You might need to
[enable it](https://blog.jetbrains.com/webstorm/2015/05/ecmascript-6-in-webstorm-transpiling/) though.
2 changes: 2 additions & 0 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ redirect_from:
- /docs/using-babel/
- /plugins.html
- /docs/using-6to5/
- /docs/usage/browser/
- browser.html
custom_js_with_timestamps:
- tools.js
---
Expand Down
58 changes: 54 additions & 4 deletions docs/usage/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ title: API
description: How to use the Node.js API.
permalink: /docs/usage/api/
package: babel-core
Copy link
Member

@xtuc xtuc Dec 6, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I moved this doc in babel/babel (PR babel/babel#4938). It will be then included in the website at build-time (PR #1026)

Could you apply your modifications in babel repo ? Thanks.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For clarification this would mean making a pr to babel/babel in the babel-core readme

and then adding {% include package_readme.html %} instead of the content here.

we can do it in another pr too?

redirect_from:
- /docs/usage/options/
---

```javascript
Expand All @@ -12,7 +14,7 @@ import { transform } from 'babel-core';
import * as babel from 'babel-core';
```

## babel.transform(code: string, [options?](/docs/usage/options): Object)
## babel.transform(code: string, [options?](/docs/usage/api/#options): Object)

Transforms the passed in `code`. Returning an object with the generated code,
source map, and AST.
Expand All @@ -30,7 +32,7 @@ result.map;
result.ast;
```

## babel.transformFile(filename: string, [options?](/docs/usage/options): Object, callback: Function)
## babel.transformFile(filename: string, [options?](/docs/usage/api/#options): Object, callback: Function)

Asynchronously transforms the entire contents of a file.

Expand All @@ -46,7 +48,7 @@ babel.transformFile("filename.js", options, function (err, result) {
});
```

## babel.transformFileSync(filename: string, [options?](/docs/usage/options): Object)
## babel.transformFileSync(filename: string, [options?](/docs/usage/api/#options): Object)

Synchronous version of `babel.transformFile`. Returns the transformed contents of
the `filename`.
Expand All @@ -61,7 +63,7 @@ babel.transformFileSync(filename, options) // => { code, map, ast }
babel.transformFileSync("filename.js", options).code;
```

## babel.transformFromAst(ast: Object, code?: string, [options?](/docs/usage/options): Object)
## babel.transformFromAst(ast: Object, code?: string, [options?](/docs/usage/api/#options): Object)

Given, an [AST](https://astexplorer.net/), transform it.

Expand All @@ -70,3 +72,51 @@ const code = "if (true) return;";
const ast = babylon.parse(code, { allowReturnOutsideFunction: true });
const { code, map, ast } = babel.transformFromAst(ast, code, options);
```

## Options

<blockquote class="babel-callout babel-callout-info">
<h4>Babel CLI</h4>
<p>
You can pass these options from the Babel CLI like so:
</p>
<p>
<code>babel --name<span class="o">=</span>value</code>
</p>
</blockquote>

Following is a table of the options you can use:

| Option | Default | Description |
| ------------------------ | -------------------- | ------------------------------- |
| `filename` | `"unknown"` | Filename for use in errors etc. |
| `filenameRelative` | `(filename)` | Filename relative to `sourceRoot`. |
| `presets` | `[]` | List of [presets](/docs/plugins/#presets) (a set of plugins) to load and use. |
| `plugins` | `[]` | List of [plugins](/docs/plugins/) to load and use. |
| `parserOpts` | `{}` | An object containing the options to be passed down to the babel parser, babylon |
| `generatorOpts` | `{}` | An object containing the options to be passed down to the babel code generator, babel-generator |
| `highlightCode` | `true` | ANSI highlight syntax error code frames |
| `only` | `null` | A [glob](https://github.com/isaacs/minimatch), regex, or mixed array of both, matching paths to **only** compile. Can also be an array of arrays containing paths to explicitly match. When attempting to compile a non-matching file it's returned verbatim. |
| `ignore` | `null` | Opposite to the `only` option. `ignore` is disregarded if `only` is specified. |
| `auxiliaryCommentBefore` | `null` | Attach a comment before all non-user injected code. |
| `auxiliaryCommentAfter` | `null` | Attach a comment after all non-user injected code. |
| `sourceMaps` | `false` | If truthy, adds a `map` property to returned output. If set to `"inline"`, a comment with a sourceMappingURL directive is added to the bottom of the returned code. If set to `"both"` then a `map` property is returned as well as a source map comment appended. **This does not emit sourcemap files by itself!** To have sourcemaps emitted using the CLI, you must pass it the `--source-maps` option. |
| `inputSourceMap` | `null` | A source map object that the output source map will be based on. |
| `sourceMapTarget` | `(filenameRelative)` | Set `file` on returned source map. |
| `sourceFileName` | `(filenameRelative)` | Set `sources[0]` on returned source map. |
| `sourceRoot` | `(moduleRoot)` | The root from which all sources are relative. |
| `moduleRoot` | `(sourceRoot)` | Optional prefix for the AMD module formatter that will be prepend to the filename on module definitions. |
| `moduleIds` | `false` | If truthy, insert an explicit id for modules. By default, all modules are anonymous. (Not available for `common` modules) |
| `moduleId` | `null` | Specify a custom name for module ids. |
| `getModuleId` | `null` | Specify a custom callback to generate a module id with. Called as `getModuleId(moduleName)`. If falsy value is returned then the generated module id is used. |
| `resolveModuleSource` | `null` | Resolve a module source ie. `import "SOURCE";` to a custom value. Called as `resolveModuleSource(source, filename)`. |
| `code` | `true` | Enable code generation |
| `no-babelrc` | [CLI flag](http://babeljs.io/docs/usage/cli/#ignoring-babelrc) | Specify whether or not to use .babelrc and .babelignore files. Only available when using the CLI. |
| `ast` | `true` | Include the AST in the returned object |
| `compact` | `"auto"` | Do not include superfluous whitespace characters and line terminators. When set to `"auto"` compact is set to `true` on input sizes of >100KB. |
| `minified` | `false` | Should the output be minified (not printing last semicolons in blocks, printing literal string values instead of escaped ones, stripping `()` from `new` when safe) |
| `comments` | `true` | Output comments in generated output. |
| `shouldPrintComment` | `null` | An optional callback that controls whether a comment should be output or not. Called as `shouldPrintComment(commentContents)`. **NOTE:** This overrides the `comment` option when used. |
| `env` | `{}` | This is an object of keys that represent different environments. For example, you may have: `{ env: { production: { /* specific options */ } } }` which will use those options when the enviroment variable `BABEL_ENV` is set to `"production"`. If `BABEL_ENV` isn't set then `NODE_ENV` will be used, if it's not set then it defaults to `"development"` |
| `retainLines` | `false` | Retain line numbers. This will lead to wacky code but is handy for scenarios where you can't use source maps. (**NOTE:** This will not retain the columns) |
| `extends` | `null` | A path to an `.babelrc` file to extend |
4 changes: 2 additions & 2 deletions docs/usage/babelrc.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: docs
title: babelrc
description: How to use the babelrc
title: .babelrc
description: How to use the .babelrc
permalink: /docs/usage/babelrc/
---

Expand Down
29 changes: 0 additions & 29 deletions docs/usage/browser.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/usage/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ babel --no-babelrc script.js --out-file script-compiled.js --presets=add-module-

### Advanced Usage

There are many more options available in the babel CLI, see [options](/docs/usage/options/), `babel --help` and other sections for more information.
There are many more options available in the babel CLI, see [options](/docs/usage/api/#options), `babel --help` and other sections for more information.

## babel-node

Expand Down
52 changes: 0 additions & 52 deletions docs/usage/options.md

This file was deleted.

5 changes: 3 additions & 2 deletions docs/learn-es6.md → learn-es2015.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
layout: docs
title: Learn ES2015
description: A detailed overview of ECMAScript 2015 features. Based on Luke Hoban's es6features repo.
permalink: /docs/learn-es2015/
permalink: /learn-es2015/
redirect_from:
- /docs/learn-es6/
- /docs/learn-es2015/
- /features.html
- /docs/tour/
---
Expand Down Expand Up @@ -45,7 +46,7 @@ for full specification of the ECMAScript 2015 language.
Arrows are a function shorthand using the `=>` syntax. They are syntactically
similar to the related feature in C#, Java 8 and CoffeeScript. They support
both expression and statement bodies. Unlike functions, arrows share the same
lexical `this` as their surrounding code. If an arrow is inside another function,
lexical `this` as their surrounding code. If an arrow is inside another function,
it shares the "arguments" variable of its parent function.

```js
Expand Down