File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ internal/
7272yarn.lock
7373yarn-error.log
7474.parallelperf. *
75- tests /cases /user /* /package-lock.json
7675tests /cases /user /* /node_modules /
7776tests /cases /user /* /** /* .js
7877tests /cases /user /* /** /* .js.map
@@ -83,7 +82,7 @@ tests/cases/user/*/**/*.d.ts
8382tests /baselines /reference /dt
8483.failed-tests
8584TEST-results.xml
86- package-lock.json
85+ / package-lock.json
8786tests /cases /user /TypeScript-React-Starter /TypeScript-React-Starter
8887tests /cases /user /TypeScript-Node-Starter /TypeScript-Node-Starter
8988tests /cases /user /TypeScript-React-Native-Starter /TypeScript-React-Native-Starter
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ namespace Harness {
6969 cwd = config . path ? path . join ( cwd , config . path ) : submoduleDir ;
7070 }
7171 if ( fs . existsSync ( path . join ( cwd , "package.json" ) ) ) {
72- if ( fs . existsSync ( path . join ( cwd , "package-lock.json" ) ) ) {
72+ if ( ! process . env . SOURCE_ISSUE && fs . existsSync ( path . join ( cwd , "package-lock.json" ) ) ) {
7373 fs . unlinkSync ( path . join ( cwd , "package-lock.json" ) ) ;
7474 }
7575 if ( fs . existsSync ( path . join ( cwd , "node_modules" ) ) ) {
You can’t perform that action at this time.
0 commit comments