<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: How to avoid changes in package-lock.json when using local and BAS development in parallel? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492905#M4681182</link>
    <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;gregorw&lt;/SPAN&gt;:  The incident: 896313 / 2021&lt;/P&gt;</description>
    <pubDate>Wed, 15 Dec 2021 09:50:16 GMT</pubDate>
    <dc:creator>michelle-van-lieshout</dc:creator>
    <dc:date>2021-12-15T09:50:16Z</dc:date>
    <item>
      <title>How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaq-p/12492889</link>
      <description>&lt;P&gt;Hello BAS Team,&lt;/P&gt;
  &lt;P&gt;we've developed a CAP application in our local VS Code environment. Now we're handing over the applicaiton to the customer and they must use BAS as no local IDE installation is allowed. During the setup of the project in BAS I've noticed the following issue:&lt;/P&gt;
  &lt;P&gt;When running "npm install" in BAS the original content of package-lock.json e.g.:&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;    "@sap/cds-odata-v2-adapter-proxy": {
      "version": "1.8.2",
      "resolved": "https://registry.npmjs.org/@sap/cds-odata-v2-adapter-proxy/-/cds-odata-v2-adapter-proxy-1.8.2.tgz",
      "integrity": "sha512-fN36iWJSPIOvxnPgbKmbD4FHvXV2QxUR3cVzWLNHmVY9/C1ky1oODfsYN4fkIuxj4nuIfjYdKIsaLjnv50fRmw==",
&lt;/CODE&gt;&lt;/PRE&gt; is replaced with: 
  &lt;PRE&gt;&lt;CODE&gt;    "@sap/cds-odata-v2-adapter-proxy": {
      "version": "1.8.2",
      "resolved": "http://nginx-redirector.repo-cache.svc.cluster.local/repository/appstudio-npm-group/@sap/cds-odata-v2-adapter-proxy/-/cds-odata-v2-adapter-proxy-1.8.2.tgz",
      "integrity": "sha512-fN36iWJSPIOvxnPgbKmbD4FHvXV2QxUR3cVzWLNHmVY9/C1ky1oODfsYN4fkIuxj4nuIfjYdKIsaLjnv50fRmw==",
&lt;/CODE&gt;&lt;/PRE&gt; as you can see the version and integrity fields are exactly the same. But the resolved field does change and this results in a change that either needs to be commited to the Git repository or discarded. My temporary solution for the moment is to use: 
  &lt;PRE&gt;&lt;CODE&gt;npm ci&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;I understand that the registry is configured to a different location:&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;registry = "http://nginx-redirector.repo-cache.svc.cluster.local/repository/appstudio-npm-group/"&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;to improve performance and avoid not necessary traffic. But maybe there is a way to keep the original resolved value?&lt;/P&gt;
  &lt;P&gt;Best Regards&lt;BR /&gt;Gregor&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 09:34:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaq-p/12492889</guid>
      <dc:creator>gregorw</dc:creator>
      <dc:date>2021-12-07T09:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492890#M4681167</link>
      <description>&lt;P&gt;I noticed this too. This is quite annoying if you have mixed setups with BAS and VS Code developers.&lt;/P&gt;&lt;P&gt;The BAS internal resolved URL also breaks in CI/CD pipelines. From my point of view, a NPM cache should be transparent and not change your development artefacts.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Sebastian &lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 11:16:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492890#M4681167</guid>
      <dc:creator>SebastianEsch</dc:creator>
      <dc:date>2021-12-07T11:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492891#M4681168</link>
      <description>&lt;P&gt;I asked the BAS development team internally about this and their response was: Package-lock.json should be excluded from git.  BAS resolves against NPM mirror, so these URLs will be in the &lt;CODE&gt;package-lock.json&lt;/CODE&gt;. In any environment that does not have access to Nexus it breaks builds.&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 14:39:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492891#M4681168</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2021-12-08T14:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492892#M4681169</link>
      <description>&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;thank you for jumping in hear. According to the documenation for the &lt;A href="https://docs.npmjs.com/cli/v8/configuring-npm/package-lock-json" target="_blank"&gt;package-lock-json&lt;/A&gt; which states:&lt;/P&gt;&lt;P&gt;"This file is intended to be committed into source repositories"&lt;/P&gt;&lt;P&gt;I have to disagree with the answer from the BAS development team to not add the file to version control. Please ask them to join the discussion here directly.&lt;/P&gt;&lt;P&gt;Best Regards&lt;BR /&gt;Gregor&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 15:57:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492892#M4681169</guid>
      <dc:creator>gregorw</dc:creator>
      <dc:date>2021-12-08T15:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492893#M4681170</link>
      <description>&lt;P&gt;I have shared the link to this thread with them. I also had similar questions back as I also believe package-lock.json committed to git is a best practice particularly in CI/CD setup. &lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 17:00:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492893#M4681170</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2021-12-08T17:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492894#M4681171</link>
      <description>&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;today I faced another issue that is realated to the package-lock.json. As I try to keep the MTAR resulting from the build as small as possible I've added:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;    build-parameters:
      ignore: ["node_modules/"]
&lt;/CODE&gt;&lt;/PRE&gt;
to my srv and db module. But when I now build this in BAS the deploy fails as the CF build environment seems to have no access to 
&lt;A href="http://nginx-redirector.repo-cache.svc.cluster.local" target="_blank"&gt;http://nginx-redirector.repo-cache.svc.cluster.local&lt;/A&gt;. I've now posted: &lt;A href="https://answers.sap.com/questions/13546530/deployment-of-mtar-fails-when-build-parameters-ign.html" target="_blank"&gt;Deployment of MTAR fails when build-parameters: ignore: ["node_modules/"] is set&lt;/A&gt; on this topic.&lt;P&gt;Best Regards&lt;BR /&gt;Gregor&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 12:50:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492894#M4681171</guid>
      <dc:creator>gregorw</dc:creator>
      <dc:date>2021-12-10T12:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492895#M4681172</link>
      <description>&lt;P&gt;I can see where that would be an issue. You could also exclude the package-lock.json with the same build-parameters ignore configuration; but in doing so you are of course running the risk of deploying into production with a different version of modules than you developed and tested with. I'll share this additional item with development as well. &lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 13:46:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492895#M4681172</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2021-12-10T13:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492896#M4681173</link>
      <description>&lt;P&gt;I agree with Gregor and Thomas that package-lock.json should be commited to git to get reproducible builds. And for reproducible builds the package-lock.json needs to contain public acessible URLs.&lt;/P&gt;&lt;P&gt;If you fear direct outside access to arbitrary npm repos, you should leave the package-lock.json as it is and put some other checks in between.&lt;/P&gt;&lt;P&gt;And please do not start the need to commit node-modules or put it into mtars. We already have enough problems with the node-modules file system space usage (I remember at least one incident by us caused by this), we should not carry this over to git and mtar (i would wish to have non-inclusion of node-modules as the default)! I would even think if its time for pnpm usage...&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 17:54:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492896#M4681173</guid>
      <dc:creator>WRoeckelein</dc:creator>
      <dc:date>2021-12-10T17:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492897#M4681174</link>
      <description>&lt;P&gt;Why should package-lock.json be excluded from Git? Node.js documentation states the opposite: &lt;A href="https://nodejs.dev/learn/the-package-lock-json-file" target="test_blank"&gt;https://nodejs.dev/learn/the-package-lock-json-file&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Sebastian&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 08:02:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492897#M4681174</guid>
      <dc:creator>SebastianEsch</dc:creator>
      <dc:date>2021-12-13T08:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492898#M4681175</link>
      <description>&lt;P&gt;Same here: &lt;A href="https://docs.npmjs.com/cli/v8/configuring-npm/package-lock-json" target="test_blank"&gt;https://docs.npmjs.com/cli/v8/configuring-npm/package-lock-json&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 08:03:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492898#M4681175</guid>
      <dc:creator>SebastianEsch</dc:creator>
      <dc:date>2021-12-13T08:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492899#M4681176</link>
      <description>&lt;P&gt;I agree with Gregor and the others that the best practice is to commit the package-lock and use "npm ci" to get a reproducable installation (btw not consistently used by SAP generators and buildpacks). I think it is a good option for beginners or BAS only users, but it should be possible to override this artifact repository somehow (with .npmrc it is currently not possible).&lt;/P&gt;&lt;P&gt;But it looks like they are currently doing it only for npm. Yarn is accessing the public repo directly. And i think that yarn is also installed in the default CF buildpack.&lt;/P&gt;&lt;P&gt;So my solution, for the time being, would be to switch to yarn.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 08:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492899#M4681176</guid>
      <dc:creator>MarcusSchlzel</dc:creator>
      <dc:date>2021-12-13T08:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492900#M4681177</link>
      <description>&lt;P&gt;I developed in VS before too and then wanted to change to the BAS environment to add some Fiori elements -elements. From BAS I need to deploy to a cloud foundry environment. &lt;/P&gt;&lt;P&gt;This change, that BAS makes in comparison to Visual Studio Code, also results in errors trying to deploy to a CF environment. Deploying to CF now is not possible from the BAS environment. I tried removing the "ignore: "*node_modules*"" from the build parameters in the mta.yaml but this didn't solve the problem. I keep getting the error: Unable to build dependencies: exit status 1&lt;/P&gt;&lt;P&gt;This error is due to the network requests to the local cache failing: &lt;/P&gt;&lt;P&gt;network request to &lt;A href="http://nginx-redirector.repo-cache.svc.cluster.local/repository/appstudio-npm-group/yallist/-/yallist-4.0.0.tgz" target="test_blank"&gt;http://nginx-redirector.repo-cache.svc.cluster.local/repository/appstudio-npm-group/yallist/-/yallist-4.0.0.tgz&lt;/A&gt; failed, reason: getaddrinfo ENOTFOUND nginx-redirector.repo-cache.svc.cluster.local (STDOUT, STG)#&lt;/P&gt;&lt;P&gt; A solution to this problem would therefore be very helpful to me too! Keep me updated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 12:00:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492900#M4681177</guid>
      <dc:creator>michelle-van-lieshout</dc:creator>
      <dc:date>2021-12-14T12:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492901#M4681178</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;michelle-van-lieshout&lt;/SPAN&gt; in which step does your error occur? During mbt build in BAS or during the MTA deployment?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 21:59:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492901#M4681178</guid>
      <dc:creator>gregorw</dc:creator>
      <dc:date>2021-12-14T21:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492902#M4681179</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;gregorw&lt;/SPAN&gt; it occurs during the MTA deployment. I solved it for now by pulling everything from git in VS, then running all npm installs and copying everything within the package-lock.json to BAS (so you get the registry.xxxx link instead of the nginx-redirectorxxxxx links within the package-lock.json files).&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 08:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492902#M4681179</guid>
      <dc:creator>michelle-van-lieshout</dc:creator>
      <dc:date>2021-12-15T08:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492903#M4681180</link>
      <description>&lt;P&gt;Can you please file an incident via SAP Support so we get pressure also via an official support channel.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 08:20:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492903#M4681180</guid>
      <dc:creator>gregorw</dc:creator>
      <dc:date>2021-12-15T08:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492904#M4681181</link>
      <description>&lt;P&gt;I have filed an incident as well &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 09:48:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492904#M4681181</guid>
      <dc:creator>michelle-van-lieshout</dc:creator>
      <dc:date>2021-12-15T09:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492905#M4681182</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;gregorw&lt;/SPAN&gt;:  The incident: 896313 / 2021&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 09:50:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492905#M4681182</guid>
      <dc:creator>michelle-van-lieshout</dc:creator>
      <dc:date>2021-12-15T09:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492906#M4681183</link>
      <description>&lt;P&gt;The official answer back from development is that you should use an .npmrc (in the project or user level).  Point the registry configuration in the .npmrc to the normal, public NPM registry. This will override the default BAS configuration and force it to use the normal registry instead of the cache one. &lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 13:42:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492906#M4681183</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2021-12-20T13:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492907#M4681184</link>
      <description>&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;thank you for this follow up. I've added now a .npmrc with the following content:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;registry=https://registry.npmjs.com/ &lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;To all folders that contain a package.json and in which an npm install is executed. That avoids changes on the package-lock.json.&lt;/P&gt;&lt;P&gt;Best Regards&lt;BR /&gt;Gregor&lt;/P&gt;</description>
      <pubDate>Tue, 21 Dec 2021 16:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492907#M4681184</guid>
      <dc:creator>gregorw</dc:creator>
      <dc:date>2021-12-21T16:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid changes in package-lock.json when using local and BAS development in parallel?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492908#M4681185</link>
      <description>&lt;P&gt;Hi Marcus, I agree with you (with .npmrc ) it is not overriding. Even with manual overriding in package-lock.json it is having the same error on cf push. Still there is no solution from SAP End&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 03:56:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-avoid-changes-in-package-lock-json-when-using-local-and-bas/qaa-p/12492908#M4681185</guid>
      <dc:creator>former_member6792</dc:creator>
      <dc:date>2022-04-01T03:56:12Z</dc:date>
    </item>
  </channel>
</rss>

