From bbd2ebcf3d0402c9f26ee6fd80629cb2db0b5ee3 Mon Sep 17 00:00:00 2001 From: Martijn Swaagman Date: Sun, 30 Jan 2022 10:43:31 +0100 Subject: [PATCH] chore: remove travis --- .travis.yml | 28 ---------------------------- README.md | 6 ++---- 2 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 255ca27..0000000 --- a/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ -language: node_js -node_js: - - "0.12" - - "0.11" - - "0.10" - - "0.9" - - "0.8" - - "iojs-v1.1" - - "iojs-v1.0" -before_install: - - "npm install -g npm@2.1.18" -script: - - "npm run test-travis" -after_script: - - "npm install coveralls@2.11.x && cat coverage/lcov.info | coveralls" -matrix: - fast_finish: true - allow_failures: - - node_js: "0.11" - - node_js: "0.9" - - node_js: "iojs-v1.1" - - node_js: "iojs-v1.0" -notifications: - irc: - channels: - - "irc.freenode.org#bigpipe" - on_success: change - on_failure: change diff --git a/README.md b/README.md index 06cacf3..f07f414 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # predefine -[![Build Status](https://travis-ci.org/bigpipe/predefine.png)](https://travis-ci.org/bigpipe/predefine) - When creating objects or prototypes using `Object.defineProperties` or `Object.defineProperty` it make your code look really verbose by all the property descriptions that it needs. Most of the time, they are the same. They @@ -72,8 +70,8 @@ This is a simple helper function to create descriptions that can be used within `Object.create` and `Object.defineProperties`. ```js -var data = Object.create(null, predefine.create('foo', { - value: 'bar' +var data = Object.create(null, predefine.create('foo', { + value: 'bar' })); var data = Object.create(null, predefine.create('foo', {