Skip to content

Commit 81b944f

Browse files
committed
Implement Bootstrap 4.x.x
1 parent 028a436 commit 81b944f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+656
-1107
lines changed

.babelrc.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
presets: [
3+
[
4+
'@babel/env',
5+
{
6+
loose: true,
7+
modules: false,
8+
exclude: [
9+
'@babel/plugin-transform-typeof-symbol'
10+
]
11+
}
12+
]
13+
],
14+
plugins: [
15+
'@babel/proposal-object-rest-spread'
16+
]
17+
};

.gitattributes

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Export-ignore files (GitHub download link, composer [--prefer-dist])
22
docs export-ignore
3-
.travis export-ignore
4-
Gruntfile.js export-ignore
3+
.* export-ignore
54
README.md export-ignore
65
package.json export-ignore

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Run tests
2+
on: [push, pull_request]
3+
4+
jobs:
5+
run:
6+
name: Run tests
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Clone repository
11+
uses: actions/checkout@master
12+
with:
13+
fetch-depth: 3
14+
15+
- name: Setup Node.js
16+
uses: actions/setup-node@master
17+
with:
18+
version: 12
19+
20+
- run: node --version
21+
- run: npm --version
22+
23+
- name: Install npm dependencies
24+
run: npm install
25+
26+
- name: Run tests
27+
run: npm run test

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# Files to ignore
1+
/node_modules/
2+
/docs/_site/
3+
/docs/.jekyll-metadata
24
*-dist.zip
3-
4-
# Folders to ignore
5-
docs/_site
6-
node_modules

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

Gruntfile.js

Lines changed: 0 additions & 88 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
1-
<p align="center"><img src="logo/vertical.png" alt="bootstrap-checkbox" height="200px"></p>
1+
<p align="center"><img src="logo/logo.svg" alt="bootstrap-checkbox" height="200"></p>
22

33
# [Bootstrap-checkbox](https://vsn4ik.github.io/bootstrap-checkbox/)
44

55
[![npm version](https://img.shields.io/npm/v/bootstrap-checkbox.svg)](https://www.npmjs.com/package/bootstrap-checkbox)
66
[![License](https://img.shields.io/npm/l/bootstrap-checkbox.svg)][license]
7-
[![Build Status](https://travis-ci.org/vsn4ik/bootstrap-checkbox.svg)](https://travis-ci.org/vsn4ik/bootstrap-checkbox)
7+
![Build Status](https://action-badges.now.sh/vsn4ik/bootstrap-checkbox)
88
[![devDependency Status](https://david-dm.org/vsn4ik/bootstrap-checkbox/dev-status.svg)](https://david-dm.org/vsn4ik/bootstrap-checkbox?type=dev)
99

1010

1111
## Quick start
1212

1313
Several quick start options are available:
1414

15-
* [Download the latest release](https://github.com/vsn4ik/bootstrap-checkbox/archive/v1.4.0.zip "Download Bootstrap-checkbox")
15+
* [Download the latest release](https://github.com/vsn4ik/bootstrap-checkbox/archive/v2.0.0.zip "Download Bootstrap-checkbox")
1616
* Clone the repo: `git clone https://github.com/vsn4ik/bootstrap-checkbox.git`
1717
* Install with [npm](https://www.npmjs.com): `npm install bootstrap-checkbox`
1818
* Install with [yarn](https://yarnpkg.com): `yarn add bootstrap-checkbox`
19-
* Install with [Composer](https://getcomposer.org): `composer require vsn4ik/bootstrap-checkbox "dev-master"` (deprecated on v.1.4.1)
2019

2120
### What's included
2221

composer.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)