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

@embroider/addon-dev

Package Overview
Dependencies
Maintainers
9
Versions
383
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.55b12fe

Diff

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.

ef4
published 2.0.0 •

Changelog

Source

@embroider/compat, @embroider/core, @embroider/test-setup, @embroider/webpack 2.0.0 -> 2.0.1

  • BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms 1294, 1295

Release 2022-11-23.0

ef4
published 1.8.3 •

Changelog

Source

@embroider/addon-shim: 1.8.3 -> 1.8.4

  • BUGFIX: Add missing dependency 1282
ef4
published 1.8.2 •

Changelog

Source

v1.8.2 (2022-07-04)

:bug: Bug Fix
  • compat, shared-internals
    • #1230 Detect addons with customized treeForMethod names (@ef4)
Committers: 1
  • Edward Faulkner (@ef4)
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