ember-cli-htmlbars icon indicating copy to clipboard operation
ember-cli-htmlbars copied to clipboard

Results 22 ember-cli-htmlbars issues
Sort by recently updated
recently updated
newest added

With ember-cli-htmlbars 6.3.0 and latest version 4.0.22 of `@types/ember__component`, for this type of code... ``` import { hbs } from 'ember-cli-htmlbars'; import { setComponentTemplate } from '@ember/component'; export const Button...

Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.2.1 to 4.2.2. Changelog Sourced from browserify-sign's changelog. v4.2.2 - 2023-10-25 Fixed [Tests] log when openssl doesn't support cipher [#37](https://github.com/crypto-browserify/browserify-sign/issues/37) Commits Only apps should have lockfiles 09a8995...

dependencies

Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.15.4 to 7.23.2. Release notes Sourced from @​babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...

dependencies

Bumps [get-func-name](https://github.com/chaijs/get-func-name) from 2.0.0 to 2.0.2. Release notes Sourced from get-func-name's releases. v2.0.2 What's Changed Revert previous changes that shipped this as an ES module. Full Changelog: https://github.com/chaijs/get-func-name/commits/v2.0.2 v2.0.1 What's...

dependencies

In components with a co-located template, the plugin adds `import { hbs }` and `const __COLOCATED_TEMPLATE__ = ...` to the source file, and that is affecting the code coverage. Not...

I've created a reproduction of this bug here: https://github.com/apellerano-pw/htmlbars-silent-repro **Steps to reproduce** 1. have an ember app with some kind of deprecation output, e.g. use `{{#with}}` in Ember 3.28 2....

I have the following example component in my addon: **my-addon/addon/components/example/index.ts** ``` import templateOnly from '@ember/component/template-only'; export default templateOnly(); ```hbs **my-addon/addon/components/example/index.hbs** ``` Whatever ``` **my-addon/app/components/example/index.js** ```js export { default } from...

As part of [Ember.js RFC #0800](https://rfcs.emberjs.com/id/0800-ts-adoption-plan), this package needs to supply type definitions. Preferably, this would happen by converting to TS and generating from the source; as an alternative, it...

enhancement

I noticed that the source maps for component js files have a line number offset and so breakpoints and watches in VSCode doesn’t work properly. Only debugging from Chrome is...