Commit fed0688a986192c371573c1d9cbf76abc304b99a

Authored by Nicolás Guarnieri
1 parent 239063bbfe
Exists in master and in 1 other branch develop

compilacion secuencial para evitar problemas con template

Showing 2 changed files with 2 additions and 3 deletions   Show diff stats
... ... @@ -61,8 +61,6 @@ gulp.task('pre-commit', function() {
61 61 gulp.start('templates');
62 62 });
63 63  
64   -gulp.task('compile', ['templates', 'uglify']);
65   -
66 64 gulp.task('webserver', function() {
67 65 pump [
68 66 connect.server({port: 3000})
... ... @@ -6,7 +6,8 @@
6 6 "scripts": {
7 7 "test": "echo \"Error: no test specified\" && exit 1",
8 8 "gulp-pre-commit": "gulp pre-commit",
9   - "postinstall": "gulp compile && rm -R src && rm index.html && rm .jshintrc && rm gulpfile.js",
  9 + "compile": "gulp templates && gulp uglify",
  10 + "postinstall": "npm run compile && rm -R src && rm index.html && rm .jshintrc && rm gulpfile.js",
10 11 "install-dev": "npm install -D angular bootstrap font-awesome gulp gulp-angular-templatecache gulp-concat gulp-connect gulp-htmlmin gulp-jshint gulp-rename gulp-replace gulp-uglify jasmine-core jquery jshint pre-commit pump ui-bootstrap4 && npm i -D git+https://192.168.0.11/modulos-npm/foca-directivas"
11 12 },
12 13 "pre-commit": [