A wrapper to work with the Spotify Web API.
TDD with JavaScript Course by William Justen
This library relies on Fetch API. And this API is supported in the following browsers.
39+ ✔ | 42+ ✔ | 29+ ✔ | 10.1+ ✔ | Nope ✘ |
1.0 - List global npm plugins
npm list -g --depth=0
Maybe you'll have some trouble with this plugin. However, you can solve this installing it separately.
npm i -D uglifyjs-webpack-plugin
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
[...]
plugins: [
new UglifyJSPlugin({
uglifyOptions: {
compress: { warnings: false },
output: { comments: false },
},
sourceMap: true,
}),
],
This is a problem when using npm run, it has to do with Mocha exiting with code !== 0 whenever a test fails.
"scripts": {
"test": "./node_modules/.bin/mocha specs/**/*.spec.js || ECHO.",
},
This command will solve the problem with linebreak replacement on git commit
.
git config --global core.autocrlf input
This project is licensed under the MIT License - see the LICENSE file for details