See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
| const fs = require("./pelis.js"); | |
| function main() { | |
| try { | |
| //leer elarchivo de pelis.json | |
| const allMovies = fs.getAll(); | |
| // Acceder a los argumentos por linea de comandos | |
| const args = process.argv.slice(2); |
| const miPlayList =[ | |
| { | |
| titulo:"Episodio I - Quiero aprender a programar ¿Por dónde empiezo?", | |
| url:"https://www.youtube.com/watch?v=dA4aaUBNLrg", | |
| resumen:"En esta oportunidad, y como inicio de este canal, quiero compartir con ustedes algo de información importante que deberían tener en cuenta antes de decidir aprender programación. Si bien aprender un lenguaje de programación es básico y fundamental", | |
| tags:["programación","javascript","html","css"], | |
| visto:true, | |
| dificultad:1 | |
| }, | |
| { |
| validate: validate the schema, makes no changes to the database. | |
| update: update the schema. | |
| create: creates the schema, destroying previous data. | |
| create-drop: drop the schema at the end of the session. |