Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Node.js version requirement #88

Merged
merged 3 commits into from
Jan 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 4 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,13 @@
language: node_js
node_js:
- '0.10'
- '0.12'
- iojs
- v4
- v5
- v6
- v8
- v10
- node
sudo: false

cache:
directories:
- node_modules

cache: npm
deploy:
provider: npm
email: [email protected]
api_key: "$NPM_TOKEN"
api-key: $NPM_TOKEN
on:
tags: true
repo: oncletom/crx
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Packages are available to use `crx` with:

Massive hat tip to the [node-rsa project](https://npmjs.com/node-rsa) for the pure JavaScript encryption!

**Compatibility**: this extension is compatible with `node>=0.10`.
**Compatibility**: this extension is compatible with `node>=6`.

## Install

Expand All @@ -20,7 +20,7 @@ $ npm install crx

## Module API

Asynchronous functions returns an [ES6 Promise](https://github.com/jakearchibald/es6-promise).
Asynchronous functions returns a native ECMAScript Promise.

```js
const fs = require("fs");
Expand Down
4 changes: 1 addition & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ image: Visual Studio 2017

environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"

install:
- ps: Install-Product node $env:nodejs_version x64
Expand Down
1 change: 0 additions & 1 deletion bin/crx.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
var path = require("path");
var fs = require("fs");
var rsa = require('node-rsa');
var Promise = require('es6-promise').Promise;

var program = require("commander");
var ChromeExtension = require("..");
Expand Down
Binary file added build.crx
Binary file not shown.
Loading