ember-modules-codemod icon indicating copy to clipboard operation
ember-modules-codemod copied to clipboard

Duplicate name

Open knownasilya opened this issue 7 years ago • 1 comments

Got into this situation:

import Component from '@ember/component';

const Component = Component.extend({
  // ...
});

Component.reopenClass({
  positionalParams: ['positionalParamValue']
});

export default Component;

And

import { helper } from '@ember/component/helper';

export function helper([value]) {
}

knownasilya avatar Sep 28 '17 18:09 knownasilya

What was the code before running the codemod?

rwjblue avatar Sep 30 '17 13:09 rwjblue