Make WordPress Core


Ignore:
Timestamp:
10/15/2019 03:35:03 PM (7 years ago)
Author:
gziolo
Message:

Block Editor: Remove experimental Social Links blocks

We decided to mark Social Links block as an experimental feature in Gutenberg. In effect, we are moving all related code from WordPress 5.3 release.

Props youknowriad.

Fixes #48263.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/webpack/packages.js

    r46189 r46543  
    22 * External dependencies
    33 */
     4const { DefinePlugin } = require( 'webpack' );
    45const LiveReloadPlugin = require( 'webpack-livereload-plugin' );
    56const CopyWebpackPlugin = require( 'copy-webpack-plugin' );
     
    104105        'block-library/src/search/index.php': 'wp-includes/blocks/search.php',
    105106        'block-library/src/shortcode/index.php': 'wp-includes/blocks/shortcode.php',
    106         'block-library/src/social-link/index.php': 'wp-includes/blocks/social-link.php',
    107107        'block-library/src/tag-cloud/index.php': 'wp-includes/blocks/tag-cloud.php',
    108108    };
     
    205205        },
    206206        plugins: [
     207            new DefinePlugin( {
     208                // Inject the `GUTENBERG_PHASE` global, used for feature flagging.
     209                'process.env.GUTENBERG_PHASE': 1,
     210            } ),
    207211            new LibraryExportDefaultPlugin( [
    208212                'api-fetch',
Note: See TracChangeset for help on using the changeset viewer.