Obfuscate single non-modular javascript file with require.js

I have a project for which I'm using require.js to minify/obfuscate/combine some modules. I also have a single javascript file(7 lines of code) which I want to obfuscate in the same way but it's not organised as modules(7 lines of independent code doesn't justify the overhead of the require.js bootstrap code).

Is it possible to minify/obfuscate a single file using require.js?


edit: command that I'm already using to compile the rest of the code in the project:

node lib/r.js -o name=lib/almond.js include=src/main,requireLib out=extension-min.js baseUrl=./ paths.requireLib=lib/require

r.js uses uglify2 by default but if you want to make sure you can set optimize='uglify2'