spotify-wrapper-test-tdd
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "spotify-wrapper-test-tdd", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "A wrapper to work with the spotify API", | ||
@@ -9,6 +9,5 @@ "main": "lib/main.js", | ||
"build:watch": "npx babel src --watch --out-dir lib src", | ||
"build:umd": "npx webpack --output-filename spotify-wrapper.umd.js", | ||
"build:umd:min": "npx webpack --output-filename spotify-wrapper.umd.min.js -p", | ||
"build:umd": "npx webpack --output-filename spotify-wrapper-test-tdd.umd.js", | ||
"build:umd:min": "npx webpack --output-filename spotify-wrapper-test-tdd.umd.min.js -p", | ||
"build:all": "npm run build && npm run build:umd && npm run build:umd:min", | ||
"start": "npx babel-node src/main.js", | ||
"test": "jasmine", | ||
@@ -15,0 +14,0 @@ "lint": "npx eslint src/*js --fix", |
@@ -26,3 +26,3 @@ # Spotify Wrapper | ||
```sh | ||
$ npm install spotify-wrapper --save | ||
$ npm install spotify-wrapper-test-tdd --save | ||
``` | ||
@@ -36,6 +36,6 @@ | ||
// to import a specific method | ||
import { method } from 'spotify-wrapper'; | ||
import { method } from 'spotify-wrapper-test-tdd'; | ||
// to import everything | ||
import * as spotifyWrapper from 'spotify-wrapper'; | ||
import * as spotifyWrapper from 'spotify-wrapper-test-tdd'; | ||
``` | ||
@@ -46,3 +46,3 @@ | ||
```js | ||
var spotifyWrapper = require('spotify-wrapper'); | ||
var spotifyWrapper = require('spotify-wrapper-test-tdd'); | ||
``` | ||
@@ -54,6 +54,6 @@ | ||
<!-- to import non-minified version --> | ||
<script src="spotify-wrapper.umd.js"></script> | ||
<script src="spotify-wrapper-test-tdd.umd.js"></script> | ||
<!-- to import minified version --> | ||
<script src="spotify-wrapper.umd.min.js"></script> | ||
<script src="spotify-wrapper-test-tdd.umd.min.js"></script> | ||
``` | ||
@@ -60,0 +60,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
3
69307