From 18b7f36fc126ad6b1cb290f74c140035edcd029d Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Tue, 10 Jul 2018 19:30:21 -0400 Subject: [PATCH] Framework: Reorder package.json devDependencies alphabetically (#7867) This pull request seeks to update `package.json` to apply correct alphabetical ordering to `devDependencies`. This change was observed with a simple `npm install`, likely related to the merge of packages in #7805. **Testing instructions:** Ensure npm installs without issue: ``` npm install ``` Should be no impact on the application. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7b4a4a1d4035c1..cf0b952c861db9 100644 --- a/package.json +++ b/package.json @@ -71,8 +71,8 @@ "uuid": "3.1.0" }, "devDependencies": { - "@wordpress/babel-plugin-makepot": "file:packages/babel-plugin-makepot", "@wordpress/babel-plugin-import-jsx-pragma": "file:packages/babel-plugin-import-jsx-pragma", + "@wordpress/babel-plugin-makepot": "file:packages/babel-plugin-makepot", "@wordpress/babel-preset-default": "file:packages/babel-preset-default", "@wordpress/browserslist-config": "file:packages/browserslist-config", "@wordpress/custom-templated-path-webpack-plugin": "file:packages/custom-templated-path-webpack-plugin",