I am having trouble to reference requirejs modules with relative path in the code and have them working with grunt-contrib-requirejs. Anyone has any clue on why this might happen?
File Structure:
src
|
--config.js
|
--js/
|
--package
…
I'm trying to setup a simple gruntjs task using requirejs on Windows 8, but when I run it keeps producing the follow command line error.
package.json:
{
"name": "my-app",
"version": "0.0.1",
"devDependencies": {
"grunt": "~0.4.1",
…
I'm using r.js through grunt-contrib-requirejs and haven't had any problems with it so far, until I wanted to split up my config into a separate file so that both testem and my app could share the same config. I haven't got any problems with having…
I have a problem where my grunt-contrib-requirejs task stops my grunt processes. It does this with no errors at all. I need help identifying the issue.
My overall task
grunt.registerTask('build', [
'clean:dist',
'jshint',
'handlebars',
…
I'm about to use the RequireJs plugin for Grunt. I found out that there are two plugins with the same functionality:
grunt-contrib-requirejs (https://github.com/gruntjs/grunt-contrib-requirejs)
grunt-requirejs…