mirror of
https://github.com/arnaucube/commonroutesApp.git
synced 2026-02-08 12:06:50 +01:00
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
'use strict';
|
|
|
|
module.exports = function ngAnnotate(grunt, options) {
|
|
return {
|
|
options: {},
|
|
dist: {
|
|
files: {
|
|
'dist/<%= pkg.name %>.js': ['dist/<%= pkg.name %>.pre.js']
|
|
}
|
|
}
|
|
};
|
|
};
|