ember-js-modules

0.2.1 • Public • Published

ember-js-modules

This addon will allow you to import all globals using js modules. Thanks to that you will stop using non-explicit variables and detect non-existent API.

This is a wrapper for a babel plugin: babel-plugin-javacsript

Usage

import JavaScript from 'javascript';
// You can access all globals like from self
import { Object } from 'javascript';
// You can also destructure a single object
import Math from 'javascript/Math';
// You can even import explicit module
import { abs } from 'javascript/Math';
// And of course, desctruct it

Installation

ember install ember-js-modules

Development

Installation

  • git clone https://github.com/Exelord/ember-js-modules
  • cd ember-js-modules
  • npm install

Linting

  • npm run lint:js
  • npm run lint:js -- --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • npm test – Runs ember try:each to test your addon against multiple Ember versions

Running the dummy application

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.

Package Sidebar

Install

npm i ember-js-modules

Weekly Downloads

0

Version

0.2.1

License

MIT

Unpacked Size

4.81 kB

Total Files

5

Last publish

Collaborators

  • exelord