Add minor fixes

This commit is contained in:
Daniel Garcia 2021-09-09 16:32:12 +02:00
parent 6b0faeb2e5
commit 2234b2197f
2 changed files with 17 additions and 17 deletions

View file

@ -48,9 +48,9 @@ entry: './src/index.js', // 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 `#`.