From ec3a743fb9631fde5da629f97a8744fc03232007 Mon Sep 17 00:00:00 2001 From: Chunpeng Huo Date: Thu, 27 Feb 2020 13:50:25 +1100 Subject: [PATCH] fix(tasks): update-all-dependencies should mutate original file, not dist file --- build/tasks/update-dependenciesjs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tasks/update-dependenciesjs.js b/build/tasks/update-dependenciesjs.js index 53dd7ac14..69092961d 100644 --- a/build/tasks/update-dependenciesjs.js +++ b/build/tasks/update-dependenciesjs.js @@ -3,7 +3,7 @@ const latestVersion = require('latest-version'); const fs = require('fs'); const path = require('path'); -const depJsonPath = path.resolve(__dirname, '../../dist/dependencies.json'); +const depJsonPath = path.resolve(__dirname, '../../lib/dependencies.json'); const ignore = ['text', 'gulp', 'extract-text-webpack-plugin'];