@babel/preset-stage-3
Babel preset for stage 3 plugins
Last updated 5 years ago by nicolo-ribaudo .
MIT · Repository · Original npm · Tarball · package.json
$ npm install @babel/preset-stage-3 
SYNC missed versions from official npm registry.

@babel/preset-stage-3

As of v7.0.0-beta.55, we've removed Babel's Stage presets. Please consider reading our blog post on this decision for more details. TL;DR is that it's more beneficial in the long run to explicitly add which proposals to use.


For a more automatic migration, we have updated babel-upgrade to do this for you (you can run npx babel-upgrade).

If you want the same configuration as before:

{
  "plugins": [
    "@babel/plugin-syntax-dynamic-import",
    "@babel/plugin-syntax-import-meta",
    ["@babel/plugin-proposal-class-properties", { "loose": false }],
    "@babel/plugin-proposal-json-strings"
  ]
}

If you're using the same configuration across many separate projects, keep in mind that you can also create your own custom presets with whichever plugins and presets you're looking to use.

module.exports = function() {
  return {
    plugins: [
      require("@babel/plugin-syntax-dynamic-import"),
      [require("@babel/plugin-proposal-decorators"), { "legacy": true }],
      [require("@babel/plugin-proposal-class-properties"), { "loose": true }],
    ],
    presets: [
      // ...
    ],
  };
};

NOTE: Compatibility between @babel/plugin-proposal-class-properties and @babel/plugin-proposal-decorators If you are including your plugins manually and using @babel/plugin-proposal-class-properties, make sure that @babel/plugin-proposal-decorators comes before @babel/plugin-proposal-class-properties.

When using the legacy: true option of @babel/plugin-proposal-decorators, @babel/plugin-proposal-class-properties must be used in loose: true mode.

If you are not using @babel/plugin-proposal-decorators, loose mode is not needed.

Current Tags

  • 7.8.3                                ...           latest (5 years ago)

36 Versions

  • 7.8.3                                ...           5 years ago
  • 7.8.0                                ...           5 years ago
  • 7.0.0                                ...           6 years ago
  • 7.0.0-rc.4                                ...           6 years ago
  • 7.0.0-rc.3                                ...           6 years ago
  • 7.0.0-rc.2                                ...           6 years ago
  • 7.0.0-rc.1                                ...           6 years ago
  • 7.0.0-rc.0                                ...           6 years ago
  • 7.0.0-beta.56                                ...           6 years ago
  • 7.0.0-beta.55                                ...           6 years ago
  • 7.0.0-beta.54 [deprecated]           ...           6 years ago
  • 7.0.0-beta.53 [deprecated]           ...           6 years ago
  • 7.0.0-beta.52 [deprecated]           ...           6 years ago
  • 7.0.0-beta.51                                ...           6 years ago
  • 7.0.0-beta.50                                ...           6 years ago
  • 7.0.0-beta.49                                ...           6 years ago
  • 7.0.0-beta.48                                ...           6 years ago
  • 7.0.0-beta.47                                ...           7 years ago
  • 7.0.0-beta.46                                ...           7 years ago
  • 7.0.0-beta.45                                ...           7 years ago
  • 7.0.0-beta.44                                ...           7 years ago
  • 7.0.0-beta.43                                ...           7 years ago
  • 7.0.0-beta.42                                ...           7 years ago
  • 7.0.0-beta.41                                ...           7 years ago
  • 7.0.0-beta.40                                ...           7 years ago
  • 7.0.0-beta.39                                ...           7 years ago
  • 7.0.0-beta.38                                ...           7 years ago
  • 7.0.0-beta.37                                ...           7 years ago
  • 7.0.0-beta.36                                ...           7 years ago
  • 7.0.0-beta.35                                ...           7 years ago
  • 7.0.0-beta.34                                ...           7 years ago
  • 7.0.0-beta.33                                ...           7 years ago
  • 7.0.0-beta.32                                ...           7 years ago
  • 7.0.0-beta.31                                ...           7 years ago
  • 7.0.0-beta.5                                ...           7 years ago
  • 7.0.0-beta.4                                ...           7 years ago
Downloads
Total 0
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (0)
None

© 2010 - cnpmjs.org x YWFE | Home | YWFE