Comparing version 4.0.5 to 4.0.6
{ | ||
"name": "rimraf", | ||
"version": "4.0.5", | ||
"version": "4.0.6", | ||
"main": "./dist/cjs/src/index.js", | ||
@@ -5,0 +5,0 @@ "module": "./dist/mjs/src/index.js", |
{ | ||
"name": "rimraf", | ||
"version": "4.0.5", | ||
"version": "4.0.6", | ||
"main": "./dist/cjs/src/index.js", | ||
@@ -5,0 +5,0 @@ "module": "./dist/mjs/src/index.js", |
{ | ||
"name": "rimraf", | ||
"version": "4.0.5", | ||
"version": "4.0.6", | ||
"main": "./dist/cjs/src/index.js", | ||
@@ -5,0 +5,0 @@ "module": "./dist/mjs/src/index.js", |
@@ -23,6 +23,6 @@ The [UNIX command](<http://en.wikipedia.org/wiki/Rm_(Unix)>) `rm -rf` for node. | ||
```js | ||
// default export is the main rimraf function | ||
import rimraf from 'rimraf' | ||
// default export is the main rimraf function, or use named imports | ||
import { rimraf } from 'rimraf' | ||
// or | ||
const rimraf = require('rimraf').default | ||
const { rimraf } = require('rimraf') | ||
@@ -29,0 +29,0 @@ // other strategies exported as well |
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
150313