Skip to content

Commit d12352e

Browse files
committed
Changelog 1.4.0 :
- Fixed vulnerable security patch - Add browserify - Update unit test - Update travis
1 parent b3293f8 commit d12352e

7 files changed

+470
-406
lines changed

.travis.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ language: node_js
22
node_js:
33
- "node"
44
- "lts/*"
5-
- "9"
6-
- "8"
7-
- "7"
8-
- "6"
5+
env:
6+
global:
7+
- NODE_ENV=development
8+
before_install:
9+
- npm install -g npm@latest
910
install:
10-
- npm install --dev
11+
- npm install
1112
script:
1213
- npm test
1314
after_success: npm run coverage

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2020 M ABD AZIZ ALFIAN (https://aalfiann.github.io)
3+
Copyright (c) 2021 M ABD AZIZ ALFIAN (https://aalfiann.github.io)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ $ npm install chunk-handler
2525
<script src="https://cdn.jsdelivr.net/npm/chunk-handler@1/dist/chunkhandler.min.js"></script>
2626

2727
<!-- Get patch fixes within a minor version -->
28-
<script src="https://cdn.jsdelivr.net/npm/chunk-handler@1.3/dist/chunkhandler.min.js"></script>
28+
<script src="https://cdn.jsdelivr.net/npm/chunk-handler@1.4/dist/chunkhandler.min.js"></script>
2929

3030
<!-- Get a specific version -->
3131
<!-- Recommended for production sites! -->
32-
<script src="https://cdn.jsdelivr.net/npm/chunk-handler@1.3.4/dist/chunkhandler.min.js"></script>
32+
<script src="https://cdn.jsdelivr.net/npm/chunk-handler@1.4.0/dist/chunkhandler.min.js"></script>
3333
```
3434

3535
## Usage

0 commit comments

Comments
 (0)