Skip to content

Commit 9dfaf4e

Browse files
committed
fix broken import
1 parent d689b75 commit 9dfaf4e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/release/utils/npm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
const { projectRoot: root } = require('./constants');
18+
const { projectRoot: root } = require('../../utils');
1919
const { spawn, exec } = require('child-process-promise');
2020
const { mapPkgNameToPkgPath } = require('./workspace');
2121
const { readFile: _readFile } = require('fs');

scripts/release/utils/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
const { spawn } = require('child-process-promise');
19-
const { projectRoot: root } = require('./constants');
19+
const { projectRoot: root } = require('../../utils');
2020
const ora = require('ora');
2121

2222
exports.runTests = async () => {

scripts/release/utils/yarn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
const { spawn } = require('child-process-promise');
19-
const { projectRoot: root } = require('./constants');
19+
const { projectRoot: root } = require('../../utils');
2020
const ora = require('ora');
2121

2222
exports.reinstallDeps = async () => {

0 commit comments

Comments
 (0)