select-pure
Advanced tools
Comparing version 0.1.2 to 0.1.3
{ | ||
"name": "select-pure", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Pure JavaScript select component.", | ||
@@ -15,3 +15,3 @@ "author": { | ||
], | ||
"main": "lib/select-pure.min.js", | ||
"main": "es/select-pure.min.js", | ||
"scripts": { | ||
@@ -18,0 +18,0 @@ "build": "rollup -c", |
@@ -26,3 +26,3 @@ # SelectPure JavaScript component | ||
``` | ||
<script src="https://unpkg.com/select-pure@latest/lib/select-pure.min.js"></script> | ||
<script src="https://unpkg.com/select-pure@latest/lib/bundle.min.js"></script> | ||
``` | ||
@@ -29,0 +29,0 @@ ## Usage |
@@ -7,7 +7,14 @@ import babel from "rollup-plugin-babel"; | ||
input: "src/index.js", | ||
output: { | ||
file: "lib/select-pure.min.js", | ||
format: "umd", | ||
name: "SelectPure", | ||
}, | ||
output: [ | ||
{ | ||
file: "es/select-pure.min.js", | ||
format: "es", | ||
name: "SelectPure", | ||
}, | ||
{ | ||
file: "lib/bundle.min.js", | ||
format: "umd", | ||
name: "SelectPure", | ||
}, | ||
], | ||
plugins: [ | ||
@@ -14,0 +21,0 @@ eslint({ |
Sorry, the diff of this file is not supported yet
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
147958
14
1003