Skip to content

Commit

Permalink
Merge pull request #28 from agustinbouillet/release-1.x
Browse files Browse the repository at this point in the history
Release 1.x
  • Loading branch information
agustinbouillet authored Dec 6, 2024
2 parents 96dd09f + cf9c7b5 commit 9662cd3
Show file tree
Hide file tree
Showing 7 changed files with 2,269 additions and 5,533 deletions.
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ <h1 class="h3 text-secondary pe-md-4">
</ul>
</div>
</div>
<script src='../src/telefonos_argentinos.js'></script>
<script src='../src/telefono-argentino.js'></script>
<script src='./data/response.js'></script>
<script src='./js/index.js'></script>
</body>
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ var generalCompressOptions = {
* Monitor
* Mapa
*/
gulp.task('js__telefonos_argentinos', function(){
gulp.task('js__telefono-argentino', function(){
return gulp.src([
'src/telefonos_argentinos.js'
'src/telefono-argentino.js'
])
.pipe(concat('telefonos_argentinos.js'))
.pipe(concat('telefono-argentino.js'))
.pipe(uglify(generalCompressOptions))
.pipe(gulp.dest('dist/'));
});

// Execute
gulp.task('default', gulp.series(
'js__telefonos_argentinos'
'js__telefono-argentino'
));
Loading

0 comments on commit 9662cd3

Please sign in to comment.