Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@embroider/addon-dev

Package Overview
Dependencies
Maintainers
7
Versions
386
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@embroider/addon-dev - npm Package Versions

1
39

3.0.1-unstable.a993025

Diff

ef4
published 3.0.1-unstable.514566f •

ef4
published 3.0.1-unstable.137fcab •

ef4
published 3.0.1-unstable.55b12fe •

ef4
published 3.0.0-unstable.72d5a8e •

ef4
published 3.0.0-unstable.00ec2e7 •

ef4
published 3.0.0-unstable.936fd63 •

ef4
published 3.0.0-unstable.21eae41 •

ef4
published 3.0.0-unstable.73213f2a •

ef4
published 3.0.0 •

Changelog

Source

@embroider/addon-dev 2.0.0 -> 3.0.0

  • BREAKING: @embroider/addon-template/template-transform-plugin is removed because babel-plugin-ember-template-compilation >= 2.0.0 now directly supports source-to-source transformation.

    This plugin was used to run any custom AST transformations on your templates before publishing. To replace it:

    1. Add babel-plugin-ember-template-compilation@^2.0.0 as a devDependency.

    2. Make sure you also have a devDependency on ember-source, so we have a template compiler.

    3. Update the babel config like:

      plugins: [
      -   [
      -     '@embroider/addon-dev/template-transform-plugin',
      -     {
      -       astTransforms: [
      -         ...yourPluginsHere
      -       ]
      -     }
      -   ],
      +   [
      +     'babel-plugin-ember-template-compilation',
      +     {
      +       compilerPath: 'ember-source/dist/ember-template-compiler',
      +       targetFormat: 'hbs',
      +       transforms: [
      +         ...yourPluginsHere
      +        ]
      +     }
      +   ]
      ]
      

    See https://github.com/emberjs/babel-plugin-ember-template-compilation for the complete docs on these options.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc