gaboesquivel 3.4.0 → 3.4.1

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/index.d.mts CHANGED
@@ -42,5 +42,6 @@ declare function getTechStackByTag(tag: string): {
42
42
  experience?: string[] | undefined;
43
43
  };
44
44
  declare function getProjectsByTechnology(tag: string): Project[];
45
+ declare function gaboLog(): void;
45
46
 
46
- export { type Project, type TechStackItem, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
47
+ export { type Project, type TechStackItem, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
package/dist/index.d.ts CHANGED
@@ -42,5 +42,6 @@ declare function getTechStackByTag(tag: string): {
42
42
  experience?: string[] | undefined;
43
43
  };
44
44
  declare function getProjectsByTechnology(tag: string): Project[];
45
+ declare function gaboLog(): void;
45
46
 
46
- export { type Project, type TechStackItem, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
47
+ export { type Project, type TechStackItem, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
package/dist/index.js CHANGED
@@ -20,6 +20,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // src/index.ts
21
21
  var index_exports = {};
22
22
  __export(index_exports, {
23
+ gaboLog: () => gaboLog,
23
24
  getProjectBySlug: () => getProjectBySlug,
24
25
  getProjectsByTechnology: () => getProjectsByTechnology,
25
26
  getTechStackByTag: () => getTechStackByTag,
@@ -1095,8 +1096,12 @@ function getTechStackByTag(tag) {
1095
1096
  function getProjectsByTechnology(tag) {
1096
1097
  return projects.filter((project) => project.technologies.includes(tag));
1097
1098
  }
1099
+ function gaboLog() {
1100
+ console.log({ project: projects, tech: techStack });
1101
+ }
1098
1102
  // Annotate the CommonJS export names for ESM import in node:
1099
1103
  0 && (module.exports = {
1104
+ gaboLog,
1100
1105
  getProjectBySlug,
1101
1106
  getProjectsByTechnology,
1102
1107
  getTechStackByTag,
package/dist/index.mjs CHANGED
@@ -1065,7 +1065,11 @@ function getTechStackByTag(tag) {
1065
1065
  function getProjectsByTechnology(tag) {
1066
1066
  return projects.filter((project) => project.technologies.includes(tag));
1067
1067
  }
1068
+ function gaboLog() {
1069
+ console.log({ project: projects, tech: techStack });
1070
+ }
1068
1071
  export {
1072
+ gaboLog,
1069
1073
  getProjectBySlug,
1070
1074
  getProjectsByTechnology,
1071
1075
  getTechStackByTag,
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "gaboesquivel",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "Gabo Esquivel - Software Engineer",
5
5
  "author": "Gabo Esquivel",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "scripts": {
9
9
  "build": "tsup src/index.ts --format cjs,esm --dts",
10
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch" ,
11
- "publish": "npm run build && npm publish --public"
10
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch"
12
11
  },
13
12
  "devDependencies": {
14
13
  "tsup": "^8.4.0",