Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On my site I use require.js to manage my code, on the main page of my site there is alot of JavaScript with the data-main=MainPage.js. One of the libraries this page uses is the ace editor, this works well when I use require.js to load the files separately however if I try and build this using r.js then all the other files are brought in correctly but the contents of MainPage.js is lost. This is only lost when I require ace/ace, all of the other files like "ace/edit_session" do not cause me any problem.

this is what I type to compile:

node r.js -o name=MainPage out=js/MainPageCompiled.js baseUrl=js optimize=none

I am at a loss to why this is, I get no error.

share|improve this question

1 Answer

up vote 1 down vote accepted

The problem was I was using the ace library which had a conflict. It now works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.