@microsoft/esrp-release-test-integration 5.0.46 → 5.0.48
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/README.md +3 -16
- package/index.js +5 -5
- package/package.json +12 -14
package/README.md
CHANGED
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
|
|
5
|
-
1. Installation process
|
|
6
|
-
2. Software dependencies
|
|
7
|
-
3. Latest releases
|
|
8
|
-
4. API references
|
|
9
|
-
# Build and Test
|
|
10
|
-
TODO: Describe and show how to build your code and run the tests.
|
|
11
|
-
# Contribute
|
|
12
|
-
TODO: Explain how other users and developers can contribute to make your code better.
|
|
13
|
-
If you want to learn more about creating good readme files then refer the following [guidelines](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-a-readme?view=azure-devops). You can also seek inspiration from the below readme files:
|
|
14
|
-
- [ASP.NET Core](https://github.com/aspnet/Home)
|
|
15
|
-
- [Visual Studio Code](https://github.com/Microsoft/vscode)
|
|
16
|
-
- [Chakra Core](https://github.com/Microsoft/ChakraCore)
|
|
1
|
+
# Test NPM Package
|
|
2
|
+
|
|
3
|
+
This is a test package for npm BVT (Build Verification Test).
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
module.exports = {
|
|
2
|
+
greet: function(name) {
|
|
3
|
+
return `Hello, ${name}!`;
|
|
4
|
+
}
|
|
5
|
+
};
|
package/package.json
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/esrp-release-test-integration",
|
|
3
|
-
"version": "5.0.
|
|
4
|
-
"description": "
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
},
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/esrp-release-test-integration",
|
|
3
|
+
"version": "5.0.48",
|
|
4
|
+
"description": "Test npm package for BVT",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 0"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"author": "",
|
|
11
|
+
"license": "MIT"
|
|
12
|
+
}
|