@plyaz/config 1.1.1 → 1.2.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/dist/social.cjs +4 -0
- package/dist/social.cjs.map +1 -0
- package/dist/social.mjs +4 -0
- package/dist/social.mjs.map +1 -0
- package/package.json +7 -1
package/dist/social.cjs
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
'use strict';// @plyaz package - Built with tsup
|
|
2
|
+
var t={x:"https://x.com/Plyaz_",instagram:"https://instagram.com/plyaz_",linkedin:"https://linkedin.com/company/plyaz"},o={docs:"https://plyaz.gitbook.io/plyaz",community:"https://community.plyaz.co.uk",support:"mailto:help@plyaz.co.uk"};
|
|
3
|
+
exports.PRODUCT_LINKS=o;exports.SOCIAL_LINKS=t;//# sourceMappingURL=social.cjs.map
|
|
4
|
+
//# sourceMappingURL=social.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/social.ts"],"names":["SOCIAL_LINKS","PRODUCT_LINKS"],"mappings":";AAAO,IAAMA,EAAe,CAC1B,CAAA,CAAG,sBAAA,CACH,SAAA,CAAW,+BACX,QAAA,CAAU,oCACZ,CAAA,CAEaC,CAAAA,CAAgB,CAC3B,IAAA,CAAM,gCAAA,CACN,SAAA,CAAW,+BAAA,CACX,QAAS,yBACX","file":"social.cjs","sourcesContent":["export const SOCIAL_LINKS = {\n x: \"https://x.com/Plyaz_\",\n instagram: \"https://instagram.com/plyaz_\",\n linkedin: \"https://linkedin.com/company/plyaz\",\n} as const;\n\nexport const PRODUCT_LINKS = {\n docs: \"https://plyaz.gitbook.io/plyaz\",\n community: \"https://community.plyaz.co.uk\",\n support: \"mailto:help@plyaz.co.uk\",\n} as const;"]}
|
package/dist/social.mjs
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
// @plyaz package - Built with tsup
|
|
2
|
+
var t={x:"https://x.com/Plyaz_",instagram:"https://instagram.com/plyaz_",linkedin:"https://linkedin.com/company/plyaz"},o={docs:"https://plyaz.gitbook.io/plyaz",community:"https://community.plyaz.co.uk",support:"mailto:help@plyaz.co.uk"};
|
|
3
|
+
export{o as PRODUCT_LINKS,t as SOCIAL_LINKS};//# sourceMappingURL=social.mjs.map
|
|
4
|
+
//# sourceMappingURL=social.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/social.ts"],"names":["SOCIAL_LINKS","PRODUCT_LINKS"],"mappings":";AAAO,IAAMA,EAAe,CAC1B,CAAA,CAAG,sBAAA,CACH,SAAA,CAAW,+BACX,QAAA,CAAU,oCACZ,CAAA,CAEaC,CAAAA,CAAgB,CAC3B,IAAA,CAAM,gCAAA,CACN,SAAA,CAAW,+BAAA,CACX,QAAS,yBACX","file":"social.mjs","sourcesContent":["export const SOCIAL_LINKS = {\n x: \"https://x.com/Plyaz_\",\n instagram: \"https://instagram.com/plyaz_\",\n linkedin: \"https://linkedin.com/company/plyaz\",\n} as const;\n\nexport const PRODUCT_LINKS = {\n docs: \"https://plyaz.gitbook.io/plyaz\",\n community: \"https://community.plyaz.co.uk\",\n support: \"mailto:help@plyaz.co.uk\",\n} as const;"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plyaz/config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"author": "Redeemer Pace",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "Provides shared configs and constants for @playz ecosystem.",
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
"require": "./dist/index.cjs",
|
|
16
16
|
"default": "./dist/index.mjs"
|
|
17
17
|
},
|
|
18
|
+
"./social": {
|
|
19
|
+
"types": "./dist/social.d.ts",
|
|
20
|
+
"import": "./dist/social.mjs",
|
|
21
|
+
"require": "./dist/social.cjs",
|
|
22
|
+
"default": "./dist/social.mjs"
|
|
23
|
+
},
|
|
18
24
|
"./translations": {
|
|
19
25
|
"types": "./dist/translations/index.d.ts"
|
|
20
26
|
},
|