Changeset e29cc2e for trip-planner-front/node_modules/is-core-module
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- Location:
- trip-planner-front/node_modules/is-core-module
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/is-core-module/CHANGELOG.md
r59329aa re29cc2e 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [v2.8.0](https://github.com/inspect-js/is-core-module/compare/v2.7.0...v2.8.0) - 2021-10-14 9 10 ### Commits 11 12 - [actions] update codecov uploader [`0cfe94e`](https://github.com/inspect-js/is-core-module/commit/0cfe94e106a7d005ea03e008c0a21dec13a77904) 13 - [New] add `readline/promises` to node v17+ [`4f78c30`](https://github.com/inspect-js/is-core-module/commit/4f78c3008b1b58b4db6dc91d99610b1bc859da7e) 14 - [Tests] node ^14.18 supports `node:` prefixes for CJS [`43e2f17`](https://github.com/inspect-js/is-core-module/commit/43e2f177452cea2f0eaf34f61b5407217bbdb6f4) 7 15 8 16 ## [v2.7.0](https://github.com/inspect-js/is-core-module/compare/v2.6.0...v2.7.0) - 2021-09-27 -
trip-planner-front/node_modules/is-core-module/core.json
r59329aa re29cc2e 84 84 "readline": true, 85 85 "node:readline": [">= 14.18 && < 15", ">= 16"], 86 "readline/promises": ">= 17", 87 "node:readline/promises": ">= 17", 86 88 "repl": true, 87 89 "node:repl": [">= 14.18 && < 15", ">= 16"], -
trip-planner-front/node_modules/is-core-module/package.json
r59329aa re29cc2e 1 1 { 2 "_args": [ 3 [ 4 "is-core-module@2.7.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "is-core-module@2.7.0", 10 "_id": "is-core-module@2.7.0", 2 "_from": "is-core-module@^2.2.0", 3 "_id": "is-core-module@2.8.0", 11 4 "_inBundle": false, 12 "_integrity": "sha512- ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ==",5 "_integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", 13 6 "_location": "/is-core-module", 14 7 "_phantomChildren": {}, 15 8 "_requested": { 16 "type": " version",9 "type": "range", 17 10 "registry": true, 18 "raw": "is-core-module@ 2.7.0",11 "raw": "is-core-module@^2.2.0", 19 12 "name": "is-core-module", 20 13 "escapedName": "is-core-module", 21 "rawSpec": " 2.7.0",14 "rawSpec": "^2.2.0", 22 15 "saveSpec": null, 23 "fetchSpec": " 2.7.0"16 "fetchSpec": "^2.2.0" 24 17 }, 25 18 "_requiredBy": [ 26 19 "/resolve" 27 20 ], 28 "_resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.7.0.tgz", 29 "_spec": "2.7.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 21 "_resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", 22 "_shasum": "0321336c3d0925e497fd97f5d95cb114a5ccd548", 23 "_spec": "is-core-module@^2.2.0", 24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\resolve", 31 25 "author": { 32 26 "name": "Jordan Harband", … … 44 38 "url": "https://github.com/inspect-js/is-core-module/issues" 45 39 }, 40 "bundleDependencies": false, 46 41 "dependencies": { 47 42 "has": "^1.0.3" 48 43 }, 44 "deprecated": false, 49 45 "description": "Is this specifier a node.js core module?", 50 46 "devDependencies": { … … 98 94 }, 99 95 "sideEffects": false, 100 "version": "2. 7.0"96 "version": "2.8.0" 101 97 } -
trip-planner-front/node_modules/is-core-module/test/index.js
r59329aa re29cc2e 7 7 var data = require('../core.json'); 8 8 9 var supportsNodePrefix = semver.satisfies(process.versions.node, ' >= 16', { includePrerelease: true });9 var supportsNodePrefix = semver.satisfies(process.versions.node, '^14.18 || >= 16', { includePrerelease: true }); 10 10 11 11 test('core modules', function (t) {
Note:
See TracChangeset
for help on using the changeset viewer.