Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

Location:
imaps-frontend/node_modules/is-core-module
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/is-core-module/CHANGELOG.md

    rd565449 r0c6b92a  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8## [v2.15.1](https://github.com/inspect-js/is-core-module/compare/v2.15.0...v2.15.1) - 2024-08-21
     9
     10### Commits
     11
     12- [Tests] add `process.getBuiltinModule` tests [`28c7791`](https://github.com/inspect-js/is-core-module/commit/28c7791c196d58c64cfdf638b7e68ed1b62a4da0)
     13- [Fix] `test/mock_loader` is no longer exposed as of v22.7 [`68b08b0`](https://github.com/inspect-js/is-core-module/commit/68b08b0d7963447dbffa5142e8810dca550383af)
     14- [Tests] replace `aud` with `npm audit` [`32f8060`](https://github.com/inspect-js/is-core-module/commit/32f806026dac14f9016be4401a643851240c76b9)
     15- [Dev Deps] update `mock-property` [`f7d3c8f`](https://github.com/inspect-js/is-core-module/commit/f7d3c8f01e922be49621683eb41477c4f50522e1)
     16- [Dev Deps] add missing peer dep [`eaee885`](https://github.com/inspect-js/is-core-module/commit/eaee885b67238819e9c8ed5bd2098766e1d05331)
    717
    818## [v2.15.0](https://github.com/inspect-js/is-core-module/compare/v2.14.0...v2.15.0) - 2024-07-17
  • imaps-frontend/node_modules/is-core-module/core.json

    rd565449 r0c6b92a  
    118118        "test/reporters": ">= 19.9 && < 20.2",
    119119        "node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"],
    120         "test/mock_loader": ">= 22.3",
    121         "node:test/mock_loader": ">= 22.3",
     120        "test/mock_loader": ">= 22.3 && < 22.7",
     121        "node:test/mock_loader": ">= 22.3 && < 22.7",
    122122        "node:test": [">= 16.17 && < 17", ">= 18"],
    123123        "timers": true,
  • imaps-frontend/node_modules/is-core-module/package.json

    rd565449 r0c6b92a  
    11{
    22        "name": "is-core-module",
    3         "version": "2.15.0",
     3        "version": "2.15.1",
    44        "description": "Is this specifier a node.js core module?",
    55        "main": "index.js",
     
    1717                "tests-only": "nyc tape 'test/**/*.js'",
    1818                "test": "npm run tests-only",
    19                 "posttest": "aud --production",
     19                "posttest": "npx npm@'>=10.2' audit --production",
    2020                "version": "auto-changelog && git add CHANGELOG.md",
    2121                "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
     
    4747        "devDependencies": {
    4848                "@ljharb/eslint-config": "^21.1.1",
    49                 "aud": "^2.0.4",
    5049                "auto-changelog": "^2.4.0",
     50                "encoding": "^0.1.13",
    5151                "eslint": "=8.8.0",
    5252                "in-publish": "^2.0.1",
    53                 "mock-property": "^1.0.3",
     53                "mock-property": "^1.1.0",
    5454                "npmignore": "^0.3.1",
    5555                "nyc": "^10.3.2",
  • imaps-frontend/node_modules/is-core-module/test/index.js

    rd565449 r0c6b92a  
    7373
    7474        t.test('core via builtinModules list', { skip: !data.module }, function (st) {
    75                 var libs = require('module').builtinModules;
     75                var Module = require('module');
     76                var libs = Module.builtinModules;
    7677                if (!libs) {
    7778                        st.skip('module.builtinModules does not exist');
     
    9798                                if (excludeList.indexOf(mod) === -1) {
    9899                                        st.ok(data[mod], mod + ' is a core module');
     100
     101                                        if (Module.isBuiltin) {
     102                                                st.ok(Module.isBuiltin(mod), 'module.isBuiltin(' + mod + ') is true');
     103                                        }
     104
    99105                                        st.doesNotThrow(
    100106                                                function () { require(mod); }, // eslint-disable-line no-loop-func
    101107                                                'requiring ' + mod + ' does not throw'
    102108                                        );
     109
     110                                        if (process.getBuiltinModule) {
     111                                                st.equal(
     112                                                        process.getBuiltinModule(mod),
     113                                                        require(mod),
     114                                                        'process.getBuiltinModule(' + mod + ') === require(' + mod + ')'
     115                                                );
     116                                        }
     117
    103118                                        if (mod.slice(0, 5) !== 'node:') {
    104119                                                if (supportsNodePrefix) {
     
    117132                        }
    118133                }
     134
    119135                st.end();
    120136        });
Note: See TracChangeset for help on using the changeset viewer.