Skip to content

Commit

Permalink
update all dependencies to @latest, drop node@8 CI testing, add node@…
Browse files Browse the repository at this point in the history
…16 (#585)

update!: update packages to latest, drop node 8 support, add node 16
  • Loading branch information
broofa committed Nov 6, 2021
1 parent 16e9cc9 commit 343e031
Show file tree
Hide file tree
Showing 16 changed files with 3,957 additions and 8,295 deletions.
15 changes: 0 additions & 15 deletions .babelrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .eslintrc.json
Expand Up @@ -11,7 +11,7 @@
"globals": {
"msCrypto": true
},
"parser": "babel-eslint",
"parser": "@babel/eslint-parser",
"rules": {
"no-var": ["error"]
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x]
node-version: [10.x, 12.x, 14.x, 16.x]

steps:
- uses: actions/checkout@v1
Expand Down
36 changes: 3 additions & 33 deletions README.md
Expand Up @@ -9,7 +9,7 @@ For the creation of [RFC4122](http://www.ietf.org/rfc/rfc4122.txt) UUIDs
- **Complete** - Support for RFC4122 version 1, 3, 4, and 5 UUIDs
- **Cross-platform** - Support for ...
- CommonJS, [ECMAScript Modules](#ecmascript-modules) and [CDN builds](#cdn-builds)
- Node 8, 10, 12, 14
- Node 10, 12, 14, 16
- Chrome, Safari, Firefox, Edge, IE 11 browsers
- Webpack and rollup.js module bundlers
- [React Native / Expo](#react-native--expo)
Expand Down Expand Up @@ -122,22 +122,7 @@ Example:
import { stringify as uuidStringify } from 'uuid';

const uuidBytes = [
0x6e,
0xc0,
0xbd,
0x7f,
0x11,
0xc0,
0x43,
0xda,
0x97,
0x5e,
0x2a,
0x8a,
0xd9,
0xeb,
0xae,
0x0b,
0x6e, 0xc0, 0xbd, 0x7f, 0x11, 0xc0, 0x43, 0xda, 0x97, 0x5e, 0x2a, 0x8a, 0xd9, 0xeb, 0xae, 0x0b,
];

uuidStringify(uuidBytes); // ⇨ '6ec0bd7f-11c0-43da-975e-2a8ad9ebae0b'
Expand Down Expand Up @@ -223,22 +208,7 @@ import { v4 as uuidv4 } from 'uuid';

const v4options = {
random: [
0x10,
0x91,
0x56,
0xbe,
0xc4,
0xfb,
0xc1,
0xea,
0x71,
0xb4,
0xef,
0xe1,
0x67,
0x1c,
0x58,
0x36,
0x10, 0x91, 0x56, 0xbe, 0xc4, 0xfb, 0xc1, 0xea, 0x71, 0xb4, 0xef, 0xe1, 0x67, 0x1c, 0x58, 0x36,
],
};
uuidv4(v4options); // ⇨ '109156be-c4fb-41ea-b1b4-efe1671c5836'
Expand Down
2 changes: 1 addition & 1 deletion README_js.md
Expand Up @@ -21,7 +21,7 @@ For the creation of [RFC4122](http://www.ietf.org/rfc/rfc4122.txt) UUIDs
- **Complete** - Support for RFC4122 version 1, 3, 4, and 5 UUIDs
- **Cross-platform** - Support for ...
- CommonJS, [ECMAScript Modules](#ecmascript-modules) and [CDN builds](#cdn-builds)
- Node 8, 10, 12, 14
- Node 10, 12, 14, 16
- Chrome, Safari, Firefox, Edge, IE 11 browsers
- Webpack and rollup.js module bundlers
- [React Native / Expo](#react-native--expo)
Expand Down
15 changes: 15 additions & 0 deletions babel.config.json
@@ -0,0 +1,15 @@
{
"presets": [],
"plugins": [],
"env": {
"commonjs": {
"presets": [["@babel/preset-env", { "targets": { "node": "8" }, "modules": "commonjs" }]]
},
"esmBrowser": {
"presets": [["@babel/preset-env", { "modules": false }]]
},
"esmNode": {
"presets": [["@babel/preset-env", { "targets": { "node": "8" }, "modules": false }]]
}
}
}
17 changes: 1 addition & 16 deletions examples/benchmark/benchmark.js
Expand Up @@ -19,22 +19,7 @@ function testParseAndStringify() {
});

const BYTES = [
0x0f,
0x5a,
0xbc,
0xd1,
0xc1,
0x94,
0x47,
0xf3,
0x90,
0x5b,
0x2d,
0xf7,
0x26,
0x3a,
0x08,
0x4b,
0x0f, 0x5a, 0xbc, 0xd1, 0xc1, 0x94, 0x47, 0xf3, 0x90, 0x5b, 0x2d, 0xf7, 0x26, 0x3a, 0x08, 0x4b,
];

suite
Expand Down

0 comments on commit 343e031

Please sign in to comment.