diff --git a/.gitignore b/.gitignore index 400900c..d05d7e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ /node_modules/ /.idea/ -/dist/ \ No newline at end of file +/dist/ diff --git a/README.md b/README.md index bdc60b4..f635a18 100644 --- a/README.md +++ b/README.md @@ -33,24 +33,24 @@ ```javascript entry: './src/index.js', // change if needed output: { - filename: 'index.js', // change if needed - path: path.resolve(__dirname, 'dist'), // change if needed + filename: 'index.js', // change if needed + path: path.resolve(__dirname, 'dist'), // change if needed }, plugins: [ - new HtmlWebpackPlugin({ - template: './src/index.html', // change if needed - filename: path.resolve(__dirname, 'dist', 'index.html'), // change if needed - }), - - // ... + new HtmlWebpackPlugin({ + template: './src/index.html', // change if needed + filename: path.resolve(__dirname, 'dist', 'index.html'), // change if needed + }), + + // ... ], ``` - webpack.dev.js ```javascript devServer: { -contentBase: path.join(__dirname, 'dist'), // change if needed -port: 9000, // change if needed -historyApiFallback: true, + contentBase: path.join(__dirname, 'dist'), // change if needed + port: 9000, // change if needed + historyApiFallback: true, }, ``` @@ -106,11 +106,11 @@ historyApiFallback: true, Una vez añadidas quedarían de la siguiente forma: ```json "dependencies": { - "mcf-components": "git+ssh://git@bitbucket.org/SmartclipDev/mcf-components.git#v0.1.3", - "mcf-objects": "git+ssh://git@bitbucket.org/SmartclipDev/mcf-objects.git#v0.1.4", + "mcf-components": "git+ssh://git@bitbucket.org/SmartclipDev/mcf-components.git#v0.2.0", + "mcf-objects": "git+ssh://git@bitbucket.org/SmartclipDev/mcf-objects.git#v0.2.0", "smart-client-socket": "git+ssh://git@bitbucket.org/SmartclipDev/smart-client-socket.git#v0.2.0", - "smart-ads": "git+ssh://git@bitbucket.org/SmartclipDev/smart-ads.git#v0.1.3" - "smart-utils": "git+ssh://git@bitbucket.org/SmartclipDev/smart-utils.git#v0.1.3" + "smart-ads": "git+ssh://git@bitbucket.org/SmartclipDev/smart-ads.git#v0.2.0", + "smart-utils": "git+ssh://git@bitbucket.org/SmartclipDev/smart-utils.git#v0.1.4" } ``` Es necesario revisar en los repositorios las últimas versiones de las bibliotecas para incluir la versión adecuada en el proyecto. Esto se hace mediante el número de la versión detrás del símbolo `#`. @@ -140,4 +140,4 @@ Debería abrirse una nueva pestaña en el navegador haciendo una petición al se 12. Crear el repositorio remoto en el [workspace de bitbucket](https://bitbucket.org/SmartclipDev/). Si se trata de una web-app, dentro del [proyecto web-apps](https://bitbucket.org/SmartclipDev/workspace/projects/WA) 13. Iniciar el repositorio local con git y añadir la referencia remota al repositorio local ([documentación de referencia](https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes)). 14. Verificar que el archivo .gitignore contiene todos los path necesarios ([documentación de referencia](https://git-scm.com/docs/gitignore)) -15. Realizar el primer commit ([documentación de referencia](https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository)). \ No newline at end of file +15. Realizar el primer commit ([documentación de referencia](https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository)).