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

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/rollup/dist/shared/watch.js

    rd565449 r0c6b92a  
    11/*
    22  @license
    3         Rollup.js v4.20.0
    4         Sat, 03 Aug 2024 04:48:21 GMT - commit df12edfea6e9c1a71bda1a01bed1ab787b7514d5
     3        Rollup.js v4.27.4
     4        Sat, 23 Nov 2024 06:59:50 GMT - commit e805b546405a4e6cfccd3fe73e9f4df770023824
    55
    66        https://github.com/rollup/rollup
     
    1212Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
    1313
     14const rollup = require('./rollup.js');
    1415const path = require('node:path');
    1516const process = require('node:process');
    16 const rollup = require('./rollup.js');
     17const index = require('./index.js');
    1718const node_os = require('node:os');
    18 const index = require('./index.js');
    1919require('./parseAst.js');
    2020require('../native.js');
     
    6464        const task = this.task;
    6565        const isLinux = node_os.platform() === 'linux';
     66        const isFreeBSD = node_os.platform() === 'freebsd';
    6667        const isTransformDependency = transformWatcherId !== null;
    6768        const handleChange = (id, event) => {
    6869            const changedId = transformWatcherId || id;
    69             if (isLinux) {
     70            if (isLinux || isFreeBSD) {
    7071                // unwatching and watching fixes an issue with chokidar where on certain systems,
    7172                // a file that was unlinked and immediately recreated would create a change event
Note: See TracChangeset for help on using the changeset viewer.