Make WordPress Core

Changeset 61475


Ignore:
Timestamp:
01/12/2026 09:50:02 PM (35 hours ago)
Author:
SergeyBiryukov
Message:

Build/Test Tools: Ignore third-party plugins in grunt watch task.

This aims to avoid a JavaScript heap out of memory fatal error when running npm run dev.

Follow-up to [25001].

Props SirLouen, desrosj, tusharbharti, ankitkumarshah, SergeyBiryukov.
Fixes #63606.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r61458 r61475  
    13001300                    '!' + SOURCE_DIR + 'js/**/*.js',
    13011301                    // Ignore version control directories.
    1302                     '!' + SOURCE_DIR + '**/.{svn,git}/**'
     1302                    '!' + SOURCE_DIR + '**/.{svn,git}/**',
     1303                    // Ignore third-party plugins.
     1304                    '!' + SOURCE_DIR + 'wp-content/plugins/**'
    13031305                ],
    13041306                tasks: ['clean:dynamic', 'copy:dynamic'],
Note: See TracChangeset for help on using the changeset viewer.