@microsoft/esrp-release-test-integration 5.0.43 → 5.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
- function helloNpm() {
2
- return "hello NPM"
3
- }
4
-
1
+ function helloNpm() {
2
+ return "hello NPM"
3
+ }
4
+
5
5
  module.exports = helloNpm
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
- {
2
- "name": "@microsoft/esrp-release-test-integration",
3
- "version": "5.0.43",
4
- "description": "With great package manager come great responsibilities.",
5
- "main": "index.js",
6
- "author": {
7
- "name": "Jai"
8
- },
9
- "license": "ISC",
10
- "dependencies": {
11
- "child_process": "^1.0.2",
12
- "npm": "^9.6.2"
13
- }
14
- }
1
+ {
2
+ "name": "@microsoft/esrp-release-test-integration",
3
+ "version": "5.0.45",
4
+ "description": "With great package manager come great responsibilities.",
5
+ "main": "index.js",
6
+ "author": {
7
+ "name": "Jai"
8
+ },
9
+ "license": "ISC",
10
+ "dependencies": {
11
+ "child_process": "^1.0.2",
12
+ "npm": "^9.6.2"
13
+ }
14
+ }
@@ -1,39 +0,0 @@
1
- # Node.js
2
- # Build a general Node.js project with npm.
3
- # Add steps that analyze code, save build artifacts, deploy, and more:
4
- # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
5
-
6
- trigger:
7
- - main
8
-
9
- pool:
10
- vmImage: ubuntu-latest
11
-
12
- steps:
13
- - task: NodeTool@0
14
- inputs:
15
- versionSpec: '16.x'
16
- displayName: 'Install Node.js'
17
-
18
- - script: |
19
- npm install
20
- displayName: 'npm install'
21
-
22
- - script: |
23
- npm pack
24
- displayName: 'npm pack'
25
-
26
- - task: CopyFiles@2
27
- inputs:
28
- sourceFolder: '$(Build.SourcesDirectory)'
29
- contents: |
30
- **.tgz
31
- targetFolder: '$(Build.ArtifactStagingDirectory)'
32
- displayName: 'Copy project files'
33
-
34
- - task: PublishPipelineArtifact@1
35
- inputs:
36
- artifactName: npm-test-adarsh
37
- targetPath: '$(Build.ArtifactStagingDirectory)'
38
- publishLocation: 'pipeline'
39
- displayName: 'Publish npm artifact'