A replacement AMD loader for RequireJS
0
votes
0answers
35 views
How can I integrate almond without changing index.html
I have this build.js file:
({
appDir: './',
baseUrl: './js',
dir: './dist',
modules: [
{
name: 'main'
}
]
})
And in my index.html I have:
<script ...
1
vote
1answer
180 views
How to replace requirejs with almondjs with a yeoman Gruntfile.js?
So I created a project using yeoman init and it uses requirejs, I wish to replace requirejs with almondjs to make it load faster. How can I do this?
AlmondJS is here: ...
4
votes
1answer
113 views
Inline require() working in requirejs but not with optimized almond build
As the title says my inline require calls are working in a non-optimized requirejs run but not working when built with grunt and almondjs.
Uncaught Error: undefined missing views/some/view
The top ...
0
votes
0answers
137 views
Requirejs + text plugin + sugar syntax + almond.js
I'm using the sugar syntax to load templates into my views:
...
var template = require('text!templates/toolbar/toolbar.html')
Everything works fine, but when I run the r.js optimizer I get the ...
1
vote
1answer
681 views
Requirejs, almond, backbone, handlebars
Here's my situation, using Backbone and Handlebars with Requirejs.
I'm following CommonJS module definition style, because I find myself to be more comfortable with it:
define(function(require) {
...
2
votes
0answers
226 views
Getting require.js async plugin working with almond.js
I read the following article on how to get google maps, and gmaps.js to work with require.js. However, when I build my project, require.js is swapped with almond.js. In the article above, it states ...
6
votes
0answers
641 views
Using grunt requirejs with almond results in “define is not defined”
In my grunt.js file I've got
requirejs: {
dist: {
options: {
almond: true,
wrap: true,
modules: [{name: 'main'}],
mainConfigFile: ...
16
votes
4answers
1k views
Why do concatenated RequireJS AMD modules need a loader?
We love RequireJS and AMD during development, where we can edit a module, hit reload in our browser, and immediately see the result. But when it comes time to concatenate our modules into a single ...