use app.import instead of browserify
See original GitHub issuelooks like in ember-cli v2.9 or 2.10 there is a new way for importing amd modules
app.import('vendor/a-file-from-the-folder-above.js', {
using: [{ transformation: 'amd', as: 'some-package' }]
});
I wonder if we can use it instead of browserify and npm:*
syntax
Issue Analytics
- State:
- Created 7 years ago
- Comments:13 (4 by maintainers)
Top Results From Across the Web
How to Import/require a Browserify compiled file with nodejs
I like import psd.js in my Electron/NodeJS Application. ... The Browser Version of dist/psd.js is already compiled with Browserify. Because of ...
Read more >Browserify
Here is a tutorial on how to use Browserify on the command line to bundle up a simple file called main.js along with...
Read more >how to build modular applications with browserify - GitHub
This document covers how to use browserify to build modular applications. ... Under the node style of code import with require() , someone...
Read more >How To Use Node.js Modules in Browser By Using Browserify
I find Browserify a really useful module, you can easily transfer simple modules from server side to the client side.
Read more >Browserify Tutorial - Using require() In The Browser - YouTube
Learn how to use the require() function to import Javascript modules in the front-end part of your web application (in the browser) with...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@MiguelMadero keep in mind that there are another packages, like
redux-thunk
orredux-logger
, both contain dist folder though, so should be the same.He did a good summary 😃
On Wed, Nov 30, 2016 at 2:49 PM Dustin Farris notifications@github.com wrote: