Skip to content

Commit f3a955a

Browse files
chore: migrate on ipregex (#121)
1 parent 1fafec6 commit f3a955a

File tree

7 files changed

+1830
-2612
lines changed

7 files changed

+1830
-2612
lines changed

.travis.yml

+21-11
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,47 @@
11
sudo: false
22

33
git:
4-
depth: 1
4+
depth: 10
55

66
branches:
77
only:
88
- master
9+
- next
910

1011
language: node_js
1112

12-
# cache node modules
1313
cache:
1414
directories:
1515
- $HOME/.npm
1616
- node_modules
1717

1818
matrix:
1919
include:
20-
- node_js: '11'
20+
- node_js: "11"
2121
script: npm run pretest
2222
env: CI=pretest
23-
- node_js: '6'
24-
script: npm run test-only
23+
- node_js: "6"
24+
script: npm run test:only
2525
env: CI=tests 6
26-
- node_js: '8'
27-
script: npm run test-only
26+
- node_js: "8"
27+
script: npm run test:only
2828
env: CI=tests 8
29-
- node_js: '10'
30-
script: npm run test-only
29+
- node_js: "10"
30+
script: npm run test:only
3131
env: CI=tests 10
32-
- node_js: '11'
33-
script: npm run test-only
32+
- node_js: "11"
33+
script: npm run test:only
3434
env: CI=tests 11
3535

3636
before_install:
3737
- npm install -g npm@latest
38+
39+
install:
40+
- npm ci
41+
42+
before_script:
43+
- node --version
44+
- npm --version
45+
46+
script:
47+
- npm run $JOB_PART

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](http://semver.org).
66

7+
## 6.0.1 - 2019-03-26
8+
9+
- Chore: migrate on `ip-regex` to avoid lodash vulnerable libraries
10+
711
## 6.0.0 - 2019-01-09
812

913
- Chore: minimum required `node-fs` version is now `^7.0.1`.

LICENSE

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

3-
Copyright (c) 2014-2018 itgalaxy, inc.
3+
Copyright (c) 2014-present itgalaxy, inc.
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

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
[![Travis Build Status](https://img.shields.io/travis/itgalaxy/generate-robotstxt/master.svg?label=build)](https://travis-ci.org/itgalaxy/generate-robotstxt)
55
[![dependencies Status](https://david-dm.org/itgalaxy/generate-robotstxt/status.svg)](https://david-dm.org/itgalaxy/generate-robotstxt)
66
[![devDependencies Status](https://david-dm.org/itgalaxy/generate-robotstxt/dev-status.svg)](https://david-dm.org/itgalaxy/generate-robotstxt?type=dev)
7-
[![Greenkeeper badge](https://badges.greenkeeper.io/itgalaxy/generate-robotstxt.svg)](https://greenkeeper.io)
87

98
Awesome generator robots.txt.
109

0 commit comments

Comments
 (0)