Skip to content

Commit e90ba0b

Browse files
authored
fix broken imports (#2884)
* fix broken import * [AUTOMATED]: License Headers
1 parent d689b75 commit e90ba0b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

scripts/release/utils/npm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright 2018 Google Inc.
3+
* Copyright 2018 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright 2018 Google Inc.
3+
* Copyright 2018 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright 2018 Google Inc.
3+
* Copyright 2018 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -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)