Version 2.8.9

This commit is contained in:
Josh Johnson 2017-07-19 20:48:25 +01:00
parent 73940d7d04
commit f862a3a055
7 changed files with 570 additions and 566 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{ {
"name": "choices.js", "name": "choices.js",
"version": "2.8.8", "version": "2.8.9",
"description": "A vanilla JS customisable text input/select box plugin", "description": "A vanilla JS customisable text input/select box plugin",
"main": [ "main": [
"./assets/scripts/dist/choices.js", "./assets/scripts/dist/choices.js",

View file

@ -16,7 +16,7 @@
<meta name="theme-color" content="#ffffff"> <meta name="theme-color" content="#ffffff">
<!-- Ignore these --> <!-- Ignore these -->
<link rel="stylesheet" href="assets/styles/css/base.min.css?version=2.8.8"> <link rel="stylesheet" href="assets/styles/css/base.min.css?version=2.8.9">
<!-- End ignore these --> <!-- End ignore these -->
<!-- Optional includes --> <!-- Optional includes -->
@ -24,8 +24,8 @@
<!-- End optional includes --> <!-- End optional includes -->
<!-- Choices includes --> <!-- Choices includes -->
<link rel="stylesheet" href="assets/styles/css/choices.min.css?version=2.8.8"> <link rel="stylesheet" href="assets/styles/css/choices.min.css?version=2.8.9">
<script src="assets/scripts/dist/choices.js?version=2.8.8"></script> <script src="assets/scripts/dist/choices.js?version=2.8.9"></script>
<!-- End Choices includes --> <!-- End Choices includes -->
<!--[if lt IE 9]> <!--[if lt IE 9]>

View file

@ -1,6 +1,6 @@
{ {
"name": "choices.js", "name": "choices.js",
"version": "2.8.8", "version": "2.8.9",
"description": "A vanilla JS customisable text input/select box plugin", "description": "A vanilla JS customisable text input/select box plugin",
"main": "./assets/scripts/dist/choices.min.js", "main": "./assets/scripts/dist/choices.min.js",
"scripts": { "scripts": {

View file

@ -1,4 +1,4 @@
// Example usage: npm --newVersion=2.8.8 run version // Example usage: npm --newVersion=2.8.9 run version
const fs = require('fs'); const fs = require('fs');
const path = require('path'); const path = require('path');