shared22444 0.1.25

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/.npmrc.publish ADDED
@@ -0,0 +1 @@
1
+ //registry.npmjs.org/:_authToken=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
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "shared22444",
3
+ "version": "0.1.25",
4
+ "main": "src/index.js",
5
+ "scripts": {
6
+ "test": "node src/index.js"
7
+ }
8
+ }
package/src/index.js ADDED
@@ -0,0 +1,10 @@
1
+ const config = {
2
+ projectName: 'sahpa-monorepo',
3
+ createdAt: new Date().toISOString()
4
+ };
5
+
6
+ function info() {
7
+ console.log('shared config loaded', config);
8
+ }
9
+
10
+ module.exports = { config, info };