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
378
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
38

3.0.0-unstable.73213f2a

Diff

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)
ef4
published 1.8.1 •

Changelog

Source

v1.8.1 (2022-07-01)

:bug: Bug Fix
  • addon-dev
    • #1227 add-dev: HBS files were not watched for rebuilds (@ef4)
  • compat
  • macros
:memo: Documentation
  • #1225 docs: Add lazy loaded engines EmbroiderRouter details to README (@richgt)
Committers: 4
ef4
published 1.8.0 •

Changelog

Source

v1.8.0 (2022-06-09)

:rocket: Enhancement
  • addon-dev, core, shared-internals
    • #1199 Add babel plugin for preprocessing templates with ast transforms (@wondersloth)
:bug: Bug Fix
Committers: 4
ef4
published 1.7.1 •

Changelog

Source

v1.7.1 (2022-05-24)

:bug: Bug Fix
  • core
    • #1210 fastboot should not try to load through publicAssetURL (@ef4)
  • webpack
Committers: 1
  • Edward Faulkner (@ef4)
ef4
published 1.7.0 •

Changelog

Source

v1.7.0 (2022-05-23)

:rocket: Enhancement
  • addon-dev
    • #1202 Accept optional mapFilename config for rollup-app-reexports (@dfreeman)
  • macros
    • #1168 Add message to clarify error for non-serializable configs (@jkeen)
:bug: Bug Fix
:memo: Documentation
:house: Internal
Committers: 6
rwjblue
published 1.6.0 •

Changelog

Source

v1.6.0 (2022-04-07)

:rocket: Enhancement
  • addon-dev, compat, core, hbs-loader, shared-internals, webpack
    • #1010 template compilation improvements (@ef4)
:bug: Bug Fix
  • compat
    • #1170 Ensure self-references within a dummy apps work for @ resolution. (@rwjblue)
  • addon-dev
:memo: Documentation
:house: Internal
  • #1186 Fix tests under ember-data 4.x (@ef4)
  • #1167 register node tests with scenario-tester (@ef4)
Committers: 5
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