Skip to content

Commit

Permalink
[add] primer commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Xibalsba committed Apr 21, 2022
0 parents commit 111bc6c
Show file tree
Hide file tree
Showing 18 changed files with 13,562 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
dist/
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# WEBPACK STARTER

Este es el proyecto inicial para crear aplicaciones utilizando webpack


### Notas:
Recuerden reconstruir los módulos de Node con:

```
npm install
```

Y para construir el buil, recuerden utilizar el:

```
npm run build
```
3 changes: 3 additions & 0 deletions babel.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env"]
}
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Template • TodoMVC</title><script defer="defer" src="main.53335e8711efd74749f7.js"></script><link href="main.6127723ac8a0d4f88e48.css" rel="stylesheet"></head><body><section class="todoapp"><header class="header"><h1>Tareas</h1><input class="new-todo" placeholder="¿Qué necesita ser hecho?" autofocus></header><section class="main"><input id="toggle-all" class="toggle-all" type="checkbox"> <label for="toggle-all">Mark all as complete</label><ul class="todo-list"></ul></section><footer class="footer"><span class="todo-count"><strong>0</strong> pendiente(s)</span><ul class="filters"><li><a class="selected filtro" class="selected" href="#/">Todos</a></li><li><a class="filtro" href="#/active">Pendientes</a></li><li><a class="filtro" href="#/completed">Completados</a></li></ul><button class="clear-completed">Borrar completados</button></footer></section><footer class="info"><p>Template creado por <a href="http://sindresorhus.com">Sindre Sorhus</a></p><p>Funcionalidad por <a href="https://github.com/Xibalsba">Xibalsba</a></p><p>Parte de <a href="http://todomvc.com">TodoMVC</a></p></footer></body></html>
1 change: 1 addition & 0 deletions docs/main.53335e8711efd74749f7.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/main.6127723ac8a0d4f88e48.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 111bc6c

Please sign in to comment.