From 9977c90a17899d41bfd65f04288750a631002c70 Mon Sep 17 00:00:00 2001 From: Kaspars Dambis Date: Mon, 20 Jan 2025 15:34:41 +0200 Subject: [PATCH] Fix reference --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 1b2e504..f0afcef 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -112,7 +112,7 @@ module.exports = function( grunt ) { grunt.registerTask( 'blueprint-url', function() { - const blueprintJson = JSON.parse( fs.readFileSync( 'assets/blueprints/blueprint.json', 'utf8' ) ); + const blueprintJson = JSON.parse( fs.readFileSync( 'assets/dotorg/blueprints/blueprint.json', 'utf8' ) ); grunt.log.write( `Blueprint URL: https://playground.wordpress.net/#${ encodeURI( JSON.stringify( blueprintJson ) ) }` ); } );