Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: browserify/resolve
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.22.3
Choose a base ref
...
head repository: browserify/resolve
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.22.4
Choose a head ref
  • 5 commits
  • 3 files changed
  • 1 contributor

Commits on Apr 14, 2023

  1. Copy the full SHA
    775fd8e View commit details

Commits on Apr 17, 2023

  1. Revert "[Refactor] deprecated lib/core.js now uses data from `is-co…

    …re-module` also"
    
    This reverts commit 122bb64.
    
    Fixes #297.
    ljharb committed Apr 17, 2023
    Copy the full SHA
    7f99437 View commit details

Commits on Aug 4, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    mgaffney Michael Gaffney
    Copy the full SHA
    2829c04 View commit details
  2. [Deps] update is-core-module

    ljharb committed Aug 4, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    paskal Dmitry V
    Copy the full SHA
    5cb0ecc View commit details
  3. v1.22.4

     - Revert "[Refactor] deprecated `lib/core.js` now uses data from `is-core-module` also"
     - [Deps] update `is-core-module`
     - [Dev Deps] update `@ljharb/eslint-config`, `aud`, `semver`, `tape`
     - [meta] commit published core.json data
    ljharb committed Aug 4, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    paskal Dmitry V
    Copy the full SHA
    37504d6 View commit details
Showing with 11 additions and 10 deletions.
  1. +1 −3 lib/core.js
  2. +4 −1 lib/core.json
  3. +6 −6 package.json
4 changes: 1 addition & 3 deletions lib/core.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
'use strict';

var isCoreModule = require('is-core-module');
var path = require('path');
var fs = require('fs');
var data = JSON.parse(String(fs.readFileSync(path.join(path.dirname(require.resolve('is-core-module/package.json')), 'core.json'))));
var data = require('./core.json');

var core = {};
for (var mod in data) { // eslint-disable-line no-restricted-syntax
5 changes: 4 additions & 1 deletion lib/core.json
Original file line number Diff line number Diff line change
@@ -114,6 +114,8 @@
"node:string_decoder": [">= 14.18 && < 15", ">= 16"],
"sys": [">= 0.4 && < 0.7", ">= 0.8"],
"node:sys": [">= 14.18 && < 15", ">= 16"],
"test/reporters": ">= 19.9 && < 20.2",
"node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"],
"node:test": [">= 16.17 && < 17", ">= 18"],
"timers": true,
"node:timers": [">= 14.18 && < 15", ">= 16"],
@@ -147,7 +149,8 @@
"node:v8": [">= 14.18 && < 15", ">= 16"],
"vm": true,
"node:vm": [">= 14.18 && < 15", ">= 16"],
"wasi": ">= 13.4 && < 13.5",
"wasi": [">= 13.4 && < 13.5", ">= 18.17 && < 19", ">= 20"],
"node:wasi": [">= 18.17 && < 19", ">= 20"],
"worker_threads": ">= 11.7",
"node:worker_threads": [">= 14.18 && < 15", ">= 16"],
"zlib": ">= 0.5",
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "resolve",
"description": "resolve like require.resolve() on behalf of files asynchronously and synchronously",
"version": "1.22.3",
"version": "1.22.4",
"repository": {
"type": "git",
"url": "git://github.com/browserify/resolve.git"
@@ -30,9 +30,9 @@
"test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test"
},
"devDependencies": {
"@ljharb/eslint-config": "^21.0.1",
"@ljharb/eslint-config": "^21.1.0",
"array.prototype.map": "^1.0.5",
"aud": "^2.0.2",
"aud": "^2.0.3",
"copy-dir": "^1.3.0",
"eclint": "^2.8.1",
"eslint": "=8.8.0",
@@ -43,9 +43,9 @@
"object-keys": "^1.1.1",
"rimraf": "^2.7.1",
"safe-publish-latest": "^2.0.0",
"semver": "^6.3.0",
"semver": "^6.3.1",
"tap": "0.4.13",
"tape": "^5.6.3",
"tape": "^5.6.6",
"tmp": "^0.0.31"
},
"license": "MIT",
@@ -58,7 +58,7 @@
"url": "https://github.com/sponsors/ljharb"
},
"dependencies": {
"is-core-module": "^2.12.0",
"is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},