From 5f4f0e4f98d1bb69941cce67143269bd0da6bf71 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 14 Apr 2024 17:00:41 +0530 Subject: [PATCH 01/84] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..b28cfc1 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,27 @@ +# Node.js +# Build a general Node.js project with npm. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- main + +pool: + vmImage: ubuntu-latest + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- script: | + # Copy React app files to Node.js project directory + cp -r /home/einfochips/mypipe/_work/5/react_app/* . + + # Install Node.js and React dependencies + npm install + + # Build React app + npm run build + displayName: 'Copy React app, npm install, and build' From d4177df9d733494e4b9585e57dc080268d1b7bd5 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 14 Apr 2024 17:02:10 +0530 Subject: [PATCH 02/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b28cfc1..ce8647b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,8 +6,7 @@ trigger: - main -pool: - vmImage: ubuntu-latest +pool: Default steps: - task: NodeTool@0 From fb5add3a8607603fb618f200dc88827f24c458e5 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 14 Apr 2024 23:57:12 +0530 Subject: [PATCH 03/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ce8647b..2fed5fa 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,6 +13,11 @@ steps: inputs: versionSpec: '10.x' displayName: 'Install Node.js' +- task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)' + ArtifactName: 'drop' + publishLocation: 'Container' - script: | # Copy React app files to Node.js project directory From 72250001ad789382a6f8f18b162b1ec8e236646c Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:04:28 +0530 Subject: [PATCH 04/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2fed5fa..17472ed 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,7 +21,7 @@ steps: - script: | # Copy React app files to Node.js project directory - cp -r /home/einfochips/mypipe/_work/5/react_app/* . + cp -r /home/einfochips/mypipe/_work/6/react_app/* . # Install Node.js and React dependencies npm install From fa31dce1cd32c7ce719344a7099e76e771f725c2 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:10:56 +0530 Subject: [PATCH 05/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 17472ed..39cc2b7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,7 +21,7 @@ steps: - script: | # Copy React app files to Node.js project directory - cp -r /home/einfochips/mypipe/_work/6/react_app/* . + cp -r /home/einfochips/mypipe/_work/6/s/* . # Install Node.js and React dependencies npm install From 5c768b7fe69a65ad353a8b555e11600b38b32940 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:17:23 +0530 Subject: [PATCH 06/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 39cc2b7..c42414a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,6 +22,7 @@ steps: - script: | # Copy React app files to Node.js project directory cp -r /home/einfochips/mypipe/_work/6/s/* . + ls -la /home/einfochips/mypipe/_work/6/s/* . # Install Node.js and React dependencies npm install From c088c319fafb12c479e66d13e6af9e91ff19ddfb Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:32:01 +0530 Subject: [PATCH 07/84] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines-1.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 azure-pipelines-1.yml diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml new file mode 100644 index 0000000..525629f --- /dev/null +++ b/azure-pipelines-1.yml @@ -0,0 +1,28 @@ +# Node.js +# Build a general Node.js project with npm. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- main + +pool: + vmImage: ubuntu-latest + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- script: | + # Copy React app files to Node.js project directory + ls -la /home/einfochips/mypipe/_work/6/s/* . + cp -r /home/einfochips/mypipe/_work/6/s/* . + + # Install Node.js and React dependencies + npm install + + # Build React app + npm run build + displayName: 'Copy React app, npm install, and build' From 5e6d95c874aef95fe09f4a492efd7662700d3b66 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:33:10 +0530 Subject: [PATCH 08/84] Update azure-pipelines-1.yml for Azure Pipelines --- azure-pipelines-1.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml index 525629f..b27079f 100644 --- a/azure-pipelines-1.yml +++ b/azure-pipelines-1.yml @@ -7,7 +7,7 @@ trigger: - main pool: - vmImage: ubuntu-latest + vmImage: default steps: - task: NodeTool@0 From 2232c9f09d1705fa58117ac779644cee0c46932d Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:36:13 +0530 Subject: [PATCH 09/84] Update azure-pipelines-1.yml for Azure Pipelines --- azure-pipelines-1.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml index b27079f..0441b4e 100644 --- a/azure-pipelines-1.yml +++ b/azure-pipelines-1.yml @@ -6,8 +6,7 @@ trigger: - main -pool: - vmImage: default +pool: default steps: - task: NodeTool@0 From dc0259313328e6b0f32396408a1d42d43cbfcab8 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:37:46 +0530 Subject: [PATCH 10/84] Update azure-pipelines-1.yml for Azure Pipelines --- azure-pipelines-1.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml index 0441b4e..4e9183e 100644 --- a/azure-pipelines-1.yml +++ b/azure-pipelines-1.yml @@ -13,6 +13,12 @@ steps: inputs: versionSpec: '10.x' displayName: 'Install Node.js' +- task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)' + ArtifactName: 'drop' + publishLocation: 'Container' + MaxArtifactSize: 1 - script: | # Copy React app files to Node.js project directory From 8ed64f3266140b9413bd84df8969b4c580e3478e Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:52:49 +0530 Subject: [PATCH 11/84] Update azure-pipelines-1.yml for Azure Pipelines --- azure-pipelines-1.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml index 4e9183e..8f285fc 100644 --- a/azure-pipelines-1.yml +++ b/azure-pipelines-1.yml @@ -22,8 +22,8 @@ steps: - script: | # Copy React app files to Node.js project directory - ls -la /home/einfochips/mypipe/_work/6/s/* . - cp -r /home/einfochips/mypipe/_work/6/s/* . + ls -la /home/einfochips/mypipe/_work/7/s/* . + cp -r /home/einfochips/mypipe/_work/7/s/* . # Install Node.js and React dependencies npm install From 34681dce111ad742d37aa0303b9727863d901c7c Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 15 Apr 2024 13:22:28 +0530 Subject: [PATCH 12/84] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 31c6065..7ccbc8f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "chat_app_project", "version": "0.1.0", - "private": true, + //"private": true, "dependencies": { "@ant-design/icons": "^4.3.0", "@testing-library/jest-dom": "^5.11.9", From 5414d04ffab34f0da3fb5338830d347b8380ae59 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:17:53 +0530 Subject: [PATCH 13/84] Delete azure-pipelines-1.yml --- azure-pipelines-1.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 azure-pipelines-1.yml diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml deleted file mode 100644 index 8f285fc..0000000 --- a/azure-pipelines-1.yml +++ /dev/null @@ -1,33 +0,0 @@ -# Node.js -# Build a general Node.js project with npm. -# Add steps that analyze code, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript - -trigger: -- main - -pool: default - -steps: -- task: NodeTool@0 - inputs: - versionSpec: '10.x' - displayName: 'Install Node.js' -- task: PublishBuildArtifacts@1 - inputs: - PathtoPublish: '$(Build.ArtifactStagingDirectory)' - ArtifactName: 'drop' - publishLocation: 'Container' - MaxArtifactSize: 1 - -- script: | - # Copy React app files to Node.js project directory - ls -la /home/einfochips/mypipe/_work/7/s/* . - cp -r /home/einfochips/mypipe/_work/7/s/* . - - # Install Node.js and React dependencies - npm install - - # Build React app - npm run build - displayName: 'Copy React app, npm install, and build' From 80786965042277446b44967d8cd4a63343ef85f5 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:18:06 +0530 Subject: [PATCH 14/84] Delete azure-pipelines.yml --- azure-pipelines.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index c42414a..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,32 +0,0 @@ -# Node.js -# Build a general Node.js project with npm. -# Add steps that analyze code, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript - -trigger: -- main - -pool: Default - -steps: -- task: NodeTool@0 - inputs: - versionSpec: '10.x' - displayName: 'Install Node.js' -- task: PublishBuildArtifacts@1 - inputs: - PathtoPublish: '$(Build.ArtifactStagingDirectory)' - ArtifactName: 'drop' - publishLocation: 'Container' - -- script: | - # Copy React app files to Node.js project directory - cp -r /home/einfochips/mypipe/_work/6/s/* . - ls -la /home/einfochips/mypipe/_work/6/s/* . - - # Install Node.js and React dependencies - npm install - - # Build React app - npm run build - displayName: 'Copy React app, npm install, and build' From 9cde36294d03ecb081eed5b72f170e42c11190e8 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:19:12 +0530 Subject: [PATCH 15/84] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..01442dd --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# Node.js +# Build a general Node.js project with npm. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- main + +pool: + vmImage: ubuntu-latest + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- script: | + npm install + npm run build + displayName: 'npm install and build' From 134e32d2c5d4ca5f169b8360ee771914d6f09ded Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:20:25 +0530 Subject: [PATCH 16/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 01442dd..af975f7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,8 +6,7 @@ trigger: - main -pool: - vmImage: ubuntu-latest +pool: Default steps: - task: NodeTool@0 From 4fe13223d4d02d9bad05021800d9280b4e6fff9b Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:21:59 +0530 Subject: [PATCH 17/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index af975f7..691e88b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,6 +14,9 @@ steps: versionSpec: '10.x' displayName: 'Install Node.js' +- script: + cp -r /home/einfochips/mypipe/_work/10/s/package.json . + - script: | npm install npm run build From 26f160892413a81484c435482a42901880985c6b Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:25:12 +0530 Subject: [PATCH 18/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 691e88b..3de2cb8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,8 +14,8 @@ steps: versionSpec: '10.x' displayName: 'Install Node.js' -- script: - cp -r /home/einfochips/mypipe/_work/10/s/package.json . +# - script: +# cp -r /home/einfochips/mypipe/_work/10/s/package.json . - script: | npm install From dc269ce33b7826fb32e405ed5e103cc0babd71b4 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:26:38 +0530 Subject: [PATCH 19/84] Update package.json --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 7ccbc8f..93f3cff 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "name": "chat_app_project", "version": "0.1.0", - //"private": true, "dependencies": { "@ant-design/icons": "^4.3.0", "@testing-library/jest-dom": "^5.11.9", From 29e701f5732b2ff800b036e4d3e3a47af451d976 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:36:23 +0530 Subject: [PATCH 20/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3de2cb8..e9aef0d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,6 +13,11 @@ steps: inputs: versionSpec: '10.x' displayName: 'Install Node.js' +- task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)' + ArtifactName: 'drop' + publishLocation: 'Container' # - script: # cp -r /home/einfochips/mypipe/_work/10/s/package.json . From f898547ea7196f8ac755cdc3126e28a27ff8ac19 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:18:58 +0530 Subject: [PATCH 21/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e9aef0d..0187313 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,6 +13,17 @@ steps: inputs: versionSpec: '10.x' displayName: 'Install Node.js' + +- task: Npm@1 + inputs: + command: 'install' + workingDir: '$(Build.SourcesDirectory)' +- task: Npm@1 + inputs: + command: 'custom' + workingDir: '$(Build.SourcesDirectory)' + customCommand: 'run build' + - task: PublishBuildArtifacts@1 inputs: PathtoPublish: '$(Build.ArtifactStagingDirectory)' @@ -22,7 +33,7 @@ steps: # - script: # cp -r /home/einfochips/mypipe/_work/10/s/package.json . -- script: | - npm install - npm run build - displayName: 'npm install and build' +# - script: | +# npm install +# npm run build +# displayName: 'npm install and build' From c7766cce1e374f0512980fe1328a94b733abdd19 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:29:38 +0530 Subject: [PATCH 22/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0187313..f462306 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,6 +23,11 @@ steps: command: 'custom' workingDir: '$(Build.SourcesDirectory)' customCommand: 'run build' +- task: CopyFiles@2 + inputs: + SourceFolder: '$(Build.SourcesDirectory)' + Contents: '**/*.npmrc' + TargetFolder: 'drop' - task: PublishBuildArtifacts@1 inputs: From 60ece6528286f677fb0af06fd2ebc8ed29a391e9 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:36:24 +0530 Subject: [PATCH 23/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f462306..5a13e54 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,7 +27,7 @@ steps: inputs: SourceFolder: '$(Build.SourcesDirectory)' Contents: '**/*.npmrc' - TargetFolder: 'drop' + TargetFolder: '$(Build.ArtifactStagingDirectory' - task: PublishBuildArtifacts@1 inputs: From 9b4c762cf4edb9c8f06591226701186fd77a144e Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:41:45 +0530 Subject: [PATCH 24/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5a13e54..2f8c6d3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,7 +27,7 @@ steps: inputs: SourceFolder: '$(Build.SourcesDirectory)' Contents: '**/*.npmrc' - TargetFolder: '$(Build.ArtifactStagingDirectory' + TargetFolder: '$(Build.ArtifactStagingDirectory)' - task: PublishBuildArtifacts@1 inputs: @@ -35,8 +35,8 @@ steps: ArtifactName: 'drop' publishLocation: 'Container' -# - script: -# cp -r /home/einfochips/mypipe/_work/10/s/package.json . +- script: + cp -r /home/einfochips/mypipe/_work/10/s/* . # - script: | # npm install From c640423de5e06e53a1c44b30286b804b2bccc716 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:44:44 +0530 Subject: [PATCH 25/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2f8c6d3..f213c2b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -37,6 +37,7 @@ steps: - script: cp -r /home/einfochips/mypipe/_work/10/s/* . + ls -la /home/einfochips/mypipe/_work/10/s/* . # - script: | # npm install From 5a9cca7e1b0614f518bd7e1cce578c2c48081c03 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:56:40 +0530 Subject: [PATCH 26/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f213c2b..e697894 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,8 +25,6 @@ steps: customCommand: 'run build' - task: CopyFiles@2 inputs: - SourceFolder: '$(Build.SourcesDirectory)' - Contents: '**/*.npmrc' TargetFolder: '$(Build.ArtifactStagingDirectory)' - task: PublishBuildArtifacts@1 @@ -34,10 +32,12 @@ steps: PathtoPublish: '$(Build.ArtifactStagingDirectory)' ArtifactName: 'drop' publishLocation: 'Container' + MaxArtifactSize: 1 - script: - cp -r /home/einfochips/mypipe/_work/10/s/* . ls -la /home/einfochips/mypipe/_work/10/s/* . + cp -r /home/einfochips/mypipe/_work/10/s/* . + # - script: | # npm install From 963dc0c207c1cb77d50387def1eeeefdff86ba76 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 12:51:38 +0530 Subject: [PATCH 27/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e697894..99436b3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,11 +18,11 @@ steps: inputs: command: 'install' workingDir: '$(Build.SourcesDirectory)' -- task: Npm@1 - inputs: - command: 'custom' - workingDir: '$(Build.SourcesDirectory)' - customCommand: 'run build' +#- task: Npm@1 +# inputs: +# command: 'custom' +# workingDir: '$(Build.SourcesDirectory)' +# customCommand: 'run build' - task: CopyFiles@2 inputs: TargetFolder: '$(Build.ArtifactStagingDirectory)' @@ -33,6 +33,11 @@ steps: ArtifactName: 'drop' publishLocation: 'Container' MaxArtifactSize: 1 +- task: Npm@1 + inputs: + command: 'publish' + publishRegistry: 'useFeed' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/71bca7ae-7da7-4a94-bcbe-e78837bbf274' - script: ls -la /home/einfochips/mypipe/_work/10/s/* . From abfeafe40b9a8d30c572c69d6baea83e9566aaf1 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 14:18:09 +0530 Subject: [PATCH 28/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 99436b3..4079c53 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -35,16 +35,17 @@ steps: MaxArtifactSize: 1 - task: Npm@1 inputs: - command: 'publish' - publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/71bca7ae-7da7-4a94-bcbe-e78837bbf274' + command: 'install' + workingDir: '/home/einfochips/mypipe/_work/10/s/' + customRegistry: 'useFeed' + customFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/71bca7ae-7da7-4a94-bcbe-e78837bbf274' - script: ls -la /home/einfochips/mypipe/_work/10/s/* . cp -r /home/einfochips/mypipe/_work/10/s/* . -# - script: | -# npm install -# npm run build -# displayName: 'npm install and build' +- script: | + npm install + npm run build + displayName: 'npm install and build' From 70dd39823432cf6ae573fc7702eed358336e76bc Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 14:22:31 +0530 Subject: [PATCH 29/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4079c53..32adc5d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -33,6 +33,7 @@ steps: ArtifactName: 'drop' publishLocation: 'Container' MaxArtifactSize: 1 + StoreAsTar: true - task: Npm@1 inputs: command: 'install' From dc30724e8f287120da401faac0469ba494f3c5e6 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 14:33:22 +0530 Subject: [PATCH 30/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 32adc5d..82b3206 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,9 +41,9 @@ steps: customRegistry: 'useFeed' customFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/71bca7ae-7da7-4a94-bcbe-e78837bbf274' -- script: - ls -la /home/einfochips/mypipe/_work/10/s/* . - cp -r /home/einfochips/mypipe/_work/10/s/* . +# - script: +# ls -la /home/einfochips/mypipe/_work/10/s/* . +# cp -r /home/einfochips/mypipe/_work/10/s/* . - script: | From 4408c1fd0bc9304fe366986271c12fef87dbd1ba Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 14:53:14 +0530 Subject: [PATCH 31/84] Create .npmrc --- .npmrc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..e8b074c --- /dev/null +++ b/.npmrc @@ -0,0 +1,3 @@ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/projectseed/npm/registry/ + +always-auth=true From e51e1e3adcb16717987e69f091c70fff200b7eb9 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 15:12:01 +0530 Subject: [PATCH 32/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index e8b074c..84288dc 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/projectseed/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/npmseed/npm/registry/ always-auth=true From e1cd128f66cd562e3ab88a149b1fc68b855b2176 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 15:18:29 +0530 Subject: [PATCH 33/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 82b3206..aa45ea4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -36,10 +36,9 @@ steps: StoreAsTar: true - task: Npm@1 inputs: - command: 'install' - workingDir: '/home/einfochips/mypipe/_work/10/s/' - customRegistry: 'useFeed' - customFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/71bca7ae-7da7-4a94-bcbe-e78837bbf274' + command: 'publish' + publishRegistry: 'useFeed' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/b8034dc1-9ef8-4989-9318-a76be9ab0e14' # - script: # ls -la /home/einfochips/mypipe/_work/10/s/* . From ba3a0334b57d90dc7b6407eba662f3d12040f619 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 17:00:22 +0530 Subject: [PATCH 34/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aa45ea4..9d0d441 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -45,7 +45,7 @@ steps: # cp -r /home/einfochips/mypipe/_work/10/s/* . -- script: | - npm install - npm run build - displayName: 'npm install and build' +#- script: | +# npm install +# npm run build +# displayName: 'npm install and build' From c94978b868713ee33fed0607498f040258f6f9b5 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Wed, 17 Apr 2024 17:48:35 +0530 Subject: [PATCH 35/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9d0d441..4a20f59 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -40,6 +40,11 @@ steps: publishRegistry: 'useFeed' publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/b8034dc1-9ef8-4989-9318-a76be9ab0e14' +- script: | + npm version patch + npm publish --registry https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/npmseed/npm/registry/ + displayName: 'Publish NPM package' + # - script: # ls -la /home/einfochips/mypipe/_work/10/s/* . # cp -r /home/einfochips/mypipe/_work/10/s/* . From b0bb29f4c79693175cfe9442b5a9a293430c5fe3 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Thu, 18 Apr 2024 14:35:46 +0530 Subject: [PATCH 36/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4a20f59..dd8480a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,7 +4,12 @@ # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: -- main + tags: + include: + - '*' + branches: + exclude: + - azurepipe pool: Default From 3b1c98d2fa8ee4dcb46ba3c1b87c708859e72e52 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Thu, 18 Apr 2024 15:04:05 +0530 Subject: [PATCH 37/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index dd8480a..c130562 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -50,6 +50,11 @@ steps: npm publish --registry https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/npmseed/npm/registry/ displayName: 'Publish NPM package' +- script: | + npm install + npm pack + displayName: 'Install dependencies and pack' + # - script: # ls -la /home/einfochips/mypipe/_work/10/s/* . # cp -r /home/einfochips/mypipe/_work/10/s/* . From bdbbef9c698a382d4e83028f20acddb1c32a783b Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Thu, 18 Apr 2024 15:24:50 +0530 Subject: [PATCH 38/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c130562..0305ba8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,11 +23,11 @@ steps: inputs: command: 'install' workingDir: '$(Build.SourcesDirectory)' -#- task: Npm@1 -# inputs: -# command: 'custom' -# workingDir: '$(Build.SourcesDirectory)' -# customCommand: 'run build' +- task: Npm@1 + inputs: + command: 'custom' + workingDir: '$(Build.SourcesDirectory)' + customCommand: 'run build' - task: CopyFiles@2 inputs: TargetFolder: '$(Build.ArtifactStagingDirectory)' @@ -50,10 +50,11 @@ steps: npm publish --registry https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/npmseed/npm/registry/ displayName: 'Publish NPM package' -- script: | - npm install - npm pack - displayName: 'Install dependencies and pack' +#- script: | +# npm install +# npm version minor +# npm pack +# displayName: 'Install dependencies, bump image and pack' # - script: # ls -la /home/einfochips/mypipe/_work/10/s/* . From 7b8cb20300cb669f1b4460c6586257c3a4085a3e Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Thu, 18 Apr 2024 15:25:54 +0530 Subject: [PATCH 39/84] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 93f3cff..0f6a805 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chat_app_project", - "version": "0.1.0", + "version": "1.0.0", "dependencies": { "@ant-design/icons": "^4.3.0", "@testing-library/jest-dom": "^5.11.9", From 57eae7618fca6cd7f371ad5e5123a679ab19965b Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Thu, 18 Apr 2024 15:28:27 +0530 Subject: [PATCH 40/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0305ba8..bb347fb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -43,7 +43,7 @@ steps: inputs: command: 'publish' publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/b8034dc1-9ef8-4989-9318-a76be9ab0e14' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/da12e898-5a22-47bf-bb7a-075156249be9' - script: | npm version patch From 497c41746213004eb0d718a712d990b5218e6061 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Thu, 18 Apr 2024 15:32:51 +0530 Subject: [PATCH 41/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index 84288dc..40c43ff 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/npmseed/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynpm/npm/registry/ always-auth=true From 9f4a620229d13a759f22921532ef1bcaae109c73 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 00:23:53 +0530 Subject: [PATCH 42/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bb347fb..fcac55f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,8 @@ trigger: exclude: - azurepipe -pool: Default +pool: + vmImage: 'ubuntu-latest' steps: - task: NodeTool@0 From ed47d7035eff31c2f93547464d1e555b5a6cb7e9 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 00:28:23 +0530 Subject: [PATCH 43/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index 40c43ff..c9b98e2 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynpm/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ always-auth=true From d198232c9ca7f482f082155a70050f61ae4e59c5 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 00:29:13 +0530 Subject: [PATCH 44/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fcac55f..8a11475 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -48,7 +48,7 @@ steps: - script: | npm version patch - npm publish --registry https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/npmseed/npm/registry/ + npm publish --registry https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ displayName: 'Publish NPM package' #- script: | From 4a9061b1144b569dc1fbf703e39b1aa4a5d32db4 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 00:30:15 +0530 Subject: [PATCH 45/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8a11475..4a12c00 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,8 +11,7 @@ trigger: exclude: - azurepipe -pool: - vmImage: 'ubuntu-latest' +pool: default steps: - task: NodeTool@0 From 95f4598f3dba67a13557cf544e489d1733e7691f Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 00:39:19 +0530 Subject: [PATCH 46/84] Update package.json From bb04d086efb97eba851e693df998586bc60075f6 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 14:12:52 +0530 Subject: [PATCH 47/84] Update .npmrc From 8df93b3a070ec11d71bdc4486a5e4cfda7d15cdf Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 14:14:59 +0530 Subject: [PATCH 48/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4a12c00..d7d432a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -43,11 +43,10 @@ steps: inputs: command: 'publish' publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/da12e898-5a22-47bf-bb7a-075156249be9' - + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/2e96dbff-32a2-4c12-9562-ec2baf2e4614' - script: | npm version patch - npm publish --registry https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ + npm publish --https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ displayName: 'Publish NPM package' #- script: | From 7790d7fc3ba9a9149368e3d8e74d121d92487306 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 14:19:59 +0530 Subject: [PATCH 49/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d7d432a..637f293 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -44,10 +44,10 @@ steps: command: 'publish' publishRegistry: 'useFeed' publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/2e96dbff-32a2-4c12-9562-ec2baf2e4614' -- script: | - npm version patch - npm publish --https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ - displayName: 'Publish NPM package' +#- script: | +# npm version patch +# npm publish --https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ +# displayName: 'Publish NPM package' #- script: | # npm install From fb45b46a139f6e7563b36233a67dcd5ac84eafe3 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 14:27:36 +0530 Subject: [PATCH 50/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index c9b98e2..54d5f39 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/azseed/npm/registry/ always-auth=true From b1109f27e133adbd7b57f4b491b77aa7932ee261 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Fri, 19 Apr 2024 16:43:20 +0530 Subject: [PATCH 51/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 637f293..be629e8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -43,7 +43,7 @@ steps: inputs: command: 'publish' publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/2e96dbff-32a2-4c12-9562-ec2baf2e4614' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/5c5dc333-6fe9-4232-8fe7-2a49cf894950' #- script: | # npm version patch # npm publish --https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ From 3fecf92841a62a4806411df3deba0107903ba3d8 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 21 Apr 2024 12:28:17 +0530 Subject: [PATCH 52/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index be629e8..c4675bc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,8 @@ trigger: exclude: - azurepipe -pool: default +pool: + vmImage: 'ubuntu-latest' steps: - task: NodeTool@0 @@ -28,9 +29,15 @@ steps: command: 'custom' workingDir: '$(Build.SourcesDirectory)' customCommand: 'run build' -- task: CopyFiles@2 +#- task: CopyFiles@2 +# inputs: +# TargetFolder: '$(Build.ArtifactStagingDirectory)' + +- task: Npm@1 inputs: - TargetFolder: '$(Build.ArtifactStagingDirectory)' + command: custom + customCommand: 'install -g npm@latest' + displayName: 'upgrade npm to latest version' - task: PublishBuildArtifacts@1 inputs: @@ -44,6 +51,10 @@ steps: command: 'publish' publishRegistry: 'useFeed' publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/5c5dc333-6fe9-4232-8fe7-2a49cf894950' + +- script: | + npm pack + displayName: 'package for npm release' #- script: | # npm version patch # npm publish --https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ From 7d7cf580bdf972e91a72559ef1ce86c3f77831d8 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 21 Apr 2024 12:35:06 +0530 Subject: [PATCH 53/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index 54d5f39..13bae17 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/azseed/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/helloaz/npm/registry/ always-auth=true From 10114f295b2dc7e12858844a1451fb4d88b90e3d Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 21 Apr 2024 12:38:16 +0530 Subject: [PATCH 54/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c4675bc..e64627f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -50,7 +50,7 @@ steps: inputs: command: 'publish' publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/5c5dc333-6fe9-4232-8fe7-2a49cf894950' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/afc81b91-6084-4b72-9085-fe1ff247fe5c' - script: | npm pack From 8f1bb18b2b5af45c51f2d8e3414ef42c74dfc5a7 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 21 Apr 2024 12:38:59 +0530 Subject: [PATCH 55/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e64627f..6ccbc60 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,8 +11,7 @@ trigger: exclude: - azurepipe -pool: - vmImage: 'ubuntu-latest' +pool: default steps: - task: NodeTool@0 From 31ed73848fefb827ae2b46edecd410ce44a8f06d Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 21 Apr 2024 17:24:31 +0530 Subject: [PATCH 56/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index 13bae17..b138306 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/helloaz/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/he_lloseed/npm/registry/ always-auth=true From 5e413eef4767acdc8df00510c1c53072788cc9f3 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 21 Apr 2024 17:27:57 +0530 Subject: [PATCH 57/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6ccbc60..2078575 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -48,8 +48,9 @@ steps: - task: Npm@1 inputs: command: 'publish' + workingDir: '/home/einfochips/mypipe/_work/10/s/build' publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/afc81b91-6084-4b72-9085-fe1ff247fe5c' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/b506df5d-71b7-47a8-8317-4d0eaffa493a' - script: | npm pack From dca6bdb5687b9b983e93dfc6612b31d49167716a Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Sun, 21 Apr 2024 17:54:45 +0530 Subject: [PATCH 58/84] Create npm-publish.yml --- .github/workflows/npm-publish.yml | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/npm-publish.yml diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..6cdebaf --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,33 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - run: npm ci + - run: npm test + + publish-npm: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + registry-url: https://registry.npmjs.org/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}} From cb3374093e3a2259db8b603b1802a37f258e0004 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 22 Apr 2024 07:18:51 +0530 Subject: [PATCH 59/84] Update package.json --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 0f6a805..c673ad4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,9 @@ { "name": "chat_app_project", "version": "1.0.0", + "engines": { + "npm": "latest" + }, "dependencies": { "@ant-design/icons": "^4.3.0", "@testing-library/jest-dom": "^5.11.9", From 12ff1c63ffcd04343d5d0797143e88e14ca28110 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 22 Apr 2024 07:23:02 +0530 Subject: [PATCH 60/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index b138306..b39cb69 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/he_lloseed/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/helloazure/npm/registry/ always-auth=true From 68870d1a64262f79864f7ebe8fdee20ce66b865b Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 22 Apr 2024 07:42:12 +0530 Subject: [PATCH 61/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2078575..e73f652 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -32,11 +32,11 @@ steps: # inputs: # TargetFolder: '$(Build.ArtifactStagingDirectory)' -- task: Npm@1 - inputs: - command: custom - customCommand: 'install -g npm@latest' - displayName: 'upgrade npm to latest version' +#- task: Npm@1 +# inputs: +# command: custom +# customCommand: 'install -g npm@latest' +# displayName: 'upgrade npm to latest version' - task: PublishBuildArtifacts@1 inputs: @@ -48,9 +48,8 @@ steps: - task: Npm@1 inputs: command: 'publish' - workingDir: '/home/einfochips/mypipe/_work/10/s/build' publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/b506df5d-71b7-47a8-8317-4d0eaffa493a' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/bc735e48-e286-494a-a5c0-dd2b7ad12362' - script: | npm pack From fb27172f0bac1b21ec1035a610be39875e434ef0 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 22 Apr 2024 07:49:45 +0530 Subject: [PATCH 62/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e73f652..3b12e4b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,7 +22,8 @@ steps: - task: Npm@1 inputs: command: 'install' - workingDir: '$(Build.SourcesDirectory)' + customRegistry: 'useFeed' + customFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/bc735e48-e286-494a-a5c0-dd2b7ad12362' - task: Npm@1 inputs: command: 'custom' From 5fe4072e9e690c43086aa443a59ba25c2c416d90 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 13 May 2024 11:43:24 +0530 Subject: [PATCH 63/84] Update azure-pipelines.yml --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3b12e4b..665d92c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,8 @@ trigger: exclude: - azurepipe -pool: default +pool: + vmImage: ubuntu-latest steps: - task: NodeTool@0 From c3908c922a1dbfde9bbf2ef586a3bd3f7224b33c Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 13 May 2024 11:45:24 +0530 Subject: [PATCH 64/84] Update azure-pipelines.yml --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 665d92c..9b7dab4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,8 +11,7 @@ trigger: exclude: - azurepipe -pool: - vmImage: ubuntu-latest +pool: Default steps: - task: NodeTool@0 From 0ccd2e51165ba2707f34c15b2ae374b40b39b4d8 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 13 May 2024 12:08:52 +0530 Subject: [PATCH 65/84] Update azure-pipelines.yml --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9b7dab4..e00936e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,7 @@ trigger: exclude: - azurepipe -pool: Default +pool: nodepipe steps: - task: NodeTool@0 From 3436ac1dcb7cd04c0a26aaa6d05c29b6a6ede2a0 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 13 May 2024 12:14:46 +0530 Subject: [PATCH 66/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index b39cb69..6715075 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/helloazure/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/hellopipe/npm/registry/ always-auth=true From 8650625b8de82a6a2c11217848b877ab64a00806 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 13 May 2024 12:28:19 +0530 Subject: [PATCH 67/84] Update azure-pipelines.yml --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e00936e..71b0e5a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,7 +9,7 @@ trigger: - '*' branches: exclude: - - azurepipe + - main pool: nodepipe From d6fd9bf8f895e547675b4c0af545cdcb724faade Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Mon, 13 May 2024 12:33:02 +0530 Subject: [PATCH 68/84] Delete azure-pipelines.yml --- azure-pipelines.yml | 77 --------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 71b0e5a..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,77 +0,0 @@ -# Node.js -# Build a general Node.js project with npm. -# Add steps that analyze code, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript - -trigger: - tags: - include: - - '*' - branches: - exclude: - - main - -pool: nodepipe - -steps: -- task: NodeTool@0 - inputs: - versionSpec: '10.x' - displayName: 'Install Node.js' - -- task: Npm@1 - inputs: - command: 'install' - customRegistry: 'useFeed' - customFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/bc735e48-e286-494a-a5c0-dd2b7ad12362' -- task: Npm@1 - inputs: - command: 'custom' - workingDir: '$(Build.SourcesDirectory)' - customCommand: 'run build' -#- task: CopyFiles@2 -# inputs: -# TargetFolder: '$(Build.ArtifactStagingDirectory)' - -#- task: Npm@1 -# inputs: -# command: custom -# customCommand: 'install -g npm@latest' -# displayName: 'upgrade npm to latest version' - -- task: PublishBuildArtifacts@1 - inputs: - PathtoPublish: '$(Build.ArtifactStagingDirectory)' - ArtifactName: 'drop' - publishLocation: 'Container' - MaxArtifactSize: 1 - StoreAsTar: true -- task: Npm@1 - inputs: - command: 'publish' - publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/bc735e48-e286-494a-a5c0-dd2b7ad12362' - -- script: | - npm pack - displayName: 'package for npm release' -#- script: | -# npm version patch -# npm publish --https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/mynewseed/npm/registry/ -# displayName: 'Publish NPM package' - -#- script: | -# npm install -# npm version minor -# npm pack -# displayName: 'Install dependencies, bump image and pack' - -# - script: -# ls -la /home/einfochips/mypipe/_work/10/s/* . -# cp -r /home/einfochips/mypipe/_work/10/s/* . - - -#- script: | -# npm install -# npm run build -# displayName: 'npm install and build' From deb7ee0e13fa9bb619da7d9255affbb8499e2e6f Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 11:30:55 +0530 Subject: [PATCH 69/84] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..d088746 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,26 @@ +# Node.js +# Build a general Node.js project with npm. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- main + +pool: + vmImage: nodepipe + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- task: Npm@1 + inputs: + command: 'install' + +- task: Npm@1 + inputs: + command: 'publish' + publishRegistry: 'useFeed' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/f7c70e8e-1369-496a-93ec-5e76368e0aaa' From 796e68829d9559aced432682ffa4e9dee3bf29e4 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 11:32:22 +0530 Subject: [PATCH 70/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d088746..e933c74 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,8 +6,7 @@ trigger: - main -pool: - vmImage: nodepipe +pool: nodepipe steps: - task: NodeTool@0 From 5a32b0274fbbe11c042fdae96b3859bf51a9379a Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 11:47:31 +0530 Subject: [PATCH 71/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e933c74..0bd7750 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,22 +4,33 @@ # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: -- main - + tags: + include: + - '*' + branches: + exclude: + - master + pool: nodepipe - + steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displayName: 'Install Node.js' - + - task: Npm@1 inputs: command: 'install' +- task: Npm@1 + inputs: + command: 'custom' + customCommand: 'npm build' + displayName: Build - task: Npm@1 inputs: command: 'publish' publishRegistry: 'useFeed' publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/f7c70e8e-1369-496a-93ec-5e76368e0aaa' + displayName: Publish From d1921c7ded35a6a2f57174376fa485d8097c186b Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 11:54:01 +0530 Subject: [PATCH 72/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0bd7750..3a55e09 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,6 +22,7 @@ steps: - task: Npm@1 inputs: command: 'install' + workingDir: '/home/einfochips/nodepipe/_work/2/s' - task: Npm@1 inputs: command: 'custom' From 641c34dcee02000aedda378d07e4a33c2807da19 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 11:56:40 +0530 Subject: [PATCH 73/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3a55e09..3892a0a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,11 +22,10 @@ steps: - task: Npm@1 inputs: command: 'install' - workingDir: '/home/einfochips/nodepipe/_work/2/s' - task: Npm@1 inputs: command: 'custom' - customCommand: 'npm build' + customCommand: 'build' displayName: Build - task: Npm@1 From a058000384bad7de813f109abc33cd5919792a00 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 12:01:42 +0530 Subject: [PATCH 74/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3892a0a..34f349f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -31,6 +31,7 @@ steps: - task: Npm@1 inputs: command: 'publish' + workingDir: '/home/einfochips/nodepipe/_work/2/s/.npmrc' publishRegistry: 'useFeed' publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/f7c70e8e-1369-496a-93ec-5e76368e0aaa' displayName: Publish From 7b44ca14517af7f4d41482a1f339851d1bb45235 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 12:11:51 +0530 Subject: [PATCH 75/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index 6715075..fe3520b 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/hellopipe/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/artinode/npm/registry/ always-auth=true From 54b548684f06d7936a5fd81e963ec213c09828a7 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 12:13:48 +0530 Subject: [PATCH 76/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 34f349f..7a211db 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -31,7 +31,6 @@ steps: - task: Npm@1 inputs: command: 'publish' - workingDir: '/home/einfochips/nodepipe/_work/2/s/.npmrc' publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/f7c70e8e-1369-496a-93ec-5e76368e0aaa' + publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/7cd57fde-2996-41bf-8652-976ff67ff8a0' displayName: Publish From 0a015b279e8d834328758672c46136a089f9ad38 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 12:21:23 +0530 Subject: [PATCH 77/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7a211db..c410380 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,28 +9,27 @@ trigger: - '*' branches: exclude: - - master + - azure-pipe pool: nodepipe - + steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displayName: 'Install Node.js' - -- task: Npm@1 - inputs: - command: 'install' -- task: Npm@1 - inputs: - command: 'custom' - customCommand: 'build' - displayName: Build + +- script: | + npm install + displayName: 'Install Dependencies' + +- script: | + npm run build + displayName: 'Build' - task: Npm@1 inputs: command: 'publish' publishRegistry: 'useFeed' publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/7cd57fde-2996-41bf-8652-976ff67ff8a0' - displayName: Publish + displayName: 'Publish Package' From 83775de3720b2cfea3806cee5474695ec6943fb9 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 12:24:05 +0530 Subject: [PATCH 78/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c410380..6a1399d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,6 +27,10 @@ steps: npm run build displayName: 'Build' +- script: | + npm install @babel/plugin-proposal-export-namespace-from + displayName: 'Install Missing Package' + - task: Npm@1 inputs: command: 'publish' From aba2476c2b69f3955e5c822f597b39d421352da6 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 12:31:17 +0530 Subject: [PATCH 79/84] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6a1399d..922ba98 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,6 +14,10 @@ trigger: pool: nodepipe steps: +- script: | + export PATH=$PATH:/home/einfochips/nodepipe/_work/_tool/node/10.24.1/x64/bin + displayName: 'Add Node.js Binary Path' + - task: NodeTool@0 inputs: versionSpec: '10.x' @@ -37,3 +41,4 @@ steps: publishRegistry: 'useFeed' publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/7cd57fde-2996-41bf-8652-976ff67ff8a0' displayName: 'Publish Package' + From 0f590b32dfba6f8112e2d7d28ac38e6034d9f72c Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 14:07:34 +0530 Subject: [PATCH 80/84] Update .npmrc --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index fe3520b..5cf73ab 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/Azure-devops/_packaging/artinode/npm/registry/ +registry=https://pkgs.dev.azure.com/BhavikChhabria/_packaging/BhavikChhabria/npm/registry/ always-auth=true From a4985eb5781f36a8961554b7c1cbb534758c184b Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 14:09:21 +0530 Subject: [PATCH 81/84] Update azure-pipelines.yml --- azure-pipelines.yml | 32 ++++---------------------------- 1 file changed, 4 insertions(+), 28 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 922ba98..1963f6f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,20 +4,11 @@ # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: - tags: - include: - - '*' - branches: - exclude: - - azure-pipe - -pool: nodepipe +- master -steps: -- script: | - export PATH=$PATH:/home/einfochips/nodepipe/_work/_tool/node/10.24.1/x64/bin - displayName: 'Add Node.js Binary Path' +pool: default +steps: - task: NodeTool@0 inputs: versionSpec: '10.x' @@ -25,20 +16,5 @@ steps: - script: | npm install - displayName: 'Install Dependencies' - -- script: | npm run build - displayName: 'Build' - -- script: | - npm install @babel/plugin-proposal-export-namespace-from - displayName: 'Install Missing Package' - -- task: Npm@1 - inputs: - command: 'publish' - publishRegistry: 'useFeed' - publishFeed: '974bcf44-2fa8-4468-943e-10a4c93d77e1/7cd57fde-2996-41bf-8652-976ff67ff8a0' - displayName: 'Publish Package' - + displayName: 'npm install and build' From 7e60938d636ba15093fc51dc4f12b2e45078c7a2 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 14:09:32 +0530 Subject: [PATCH 82/84] Delete azure-pipelines.yml --- azure-pipelines.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 1963f6f..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,20 +0,0 @@ -# Node.js -# Build a general Node.js project with npm. -# Add steps that analyze code, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript - -trigger: -- master - -pool: default - -steps: -- task: NodeTool@0 - inputs: - versionSpec: '10.x' - displayName: 'Install Node.js' - -- script: | - npm install - npm run build - displayName: 'npm install and build' From b878d959e8ded84e31380c1c13d8a97d74a00d3f Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 14:17:48 +0530 Subject: [PATCH 83/84] Delete .npmrc --- .npmrc | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .npmrc diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 5cf73ab..0000000 --- a/.npmrc +++ /dev/null @@ -1,3 +0,0 @@ -registry=https://pkgs.dev.azure.com/BhavikChhabria/_packaging/BhavikChhabria/npm/registry/ - -always-auth=true From 56d00c81b0bbcdde2cb4ed267b2182fac1702171 Mon Sep 17 00:00:00 2001 From: BhavikChhbaria <109651498+bha1212002@users.noreply.github.com> Date: Tue, 14 May 2024 14:19:14 +0530 Subject: [PATCH 84/84] Create .npmrc "add" --- .npmrc | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..938a60b --- /dev/null +++ b/.npmrc @@ -0,0 +1,3 @@ +registry=https://pkgs.dev.azure.com/BhavikChhabria/Project/_packaging/hellofeed/npm/registry/ + +always-auth=true