Skip to content

Commit ab6d513

Browse files
committed
Update
1 parent 71c23e2 commit ab6d513

File tree

7 files changed

+3679
-25
lines changed

7 files changed

+3679
-25
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,15 @@ jobs:
99

1010
steps:
1111
- name: Clone repository
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313

1414
- name: Setup Node.js
15-
uses: actions/setup-node@v1
15+
uses: actions/setup-node@v3
1616
with:
17-
node-version: 12
18-
19-
- run: node --version
20-
- run: npm --version
17+
node-version: 'lts/hydrogen'
2118

2219
- name: Install npm dependencies
23-
run: npm install
20+
run: npm ci
2421

2522
- name: Run tests
2623
run: npm run test

.npmrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
package-lock=false
2-
optional=false
31
ignore-prepublish=true
2+
lockfile-version=3

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# [Input Spinner](https://vsn4ik.github.io/input-spinner/)
22

33
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
4-
[![Build Status](https://github.com/vsn4ik/input-spinner/workflows/Test/badge.svg)](https://github.com/vsn4ik/input-spinner/actions?workflow=Test)
5-
[![devDependency Status](https://david-dm.org/vsn4ik/input-spinner/dev-status.svg)](https://david-dm.org/vsn4ik/input-spinner?type=dev)
4+
[![Build Status](https://github.com/vsn4ik/input-spinner/actions/workflows/test.yml/badge.svg)](https://github.com/vsn4ik/input-spinner/actions/workflows/test.yml)
65

76

87
A Number-Spinner, Support keyboard operations and continuous changing.

docs/example.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>Input Spinner - Example</title>
77

8-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.css">
9-
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css">
8+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.css">
9+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
1010
<link rel="stylesheet" href="dist/input-spinner.css">
1111

12-
<script src="https://code.jquery.com/jquery-3.5.1.slim.js"></script>
13-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.js"></script>
12+
<script src="https://code.jquery.com/jquery-3.6.3.slim.js"></script>
13+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.js"></script>
1414
<script src="dist/input-spinner.js"></script>
1515
<script>
1616
document.addEventListener('DOMContentLoaded', function() {

docs/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>Input Spinner</title>
77

8-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.css">
9-
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css">
8+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.css">
9+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
1010
<link rel="stylesheet" href="dist/input-spinner.css">
1111
<link rel="stylesheet" href="assets/css/old.css">
1212
<link rel="stylesheet" href="assets/css/docs.css">
1313

14-
<script src="https://code.jquery.com/jquery-3.5.1.slim.js"></script>
15-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.js"></script>
14+
<script src="https://code.jquery.com/jquery-3.6.3.slim.js"></script>
15+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.js"></script>
1616
<script src="dist/input-spinner.js"></script>
1717
<script>
1818
document.addEventListener('DOMContentLoaded', function() {

0 commit comments

Comments
 (0)