one of the file in my project is already minified. So I wanted to stop
minifying that. So I wrote
steal
.
config
({
shim : {
"lib/page2.js": {
minify: false
}
}
});
and running command
>steal\js steal\buildjs index.html
But its not working. How can I solve it? Is there any other way?