gaboesquivel 3.3.9 → 3.4.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/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +0 -5
- package/dist/index.mjs +0 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -42,6 +42,5 @@ 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;
|
|
46
45
|
|
|
47
|
-
export { type Project, type TechStackItem,
|
|
46
|
+
export { type Project, type TechStackItem, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
|
package/dist/index.d.ts
CHANGED
|
@@ -42,6 +42,5 @@ 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;
|
|
46
45
|
|
|
47
|
-
export { type Project, type TechStackItem,
|
|
46
|
+
export { type Project, type TechStackItem, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
|
package/dist/index.js
CHANGED
|
@@ -20,7 +20,6 @@ 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,
|
|
24
23
|
getProjectBySlug: () => getProjectBySlug,
|
|
25
24
|
getProjectsByTechnology: () => getProjectsByTechnology,
|
|
26
25
|
getTechStackByTag: () => getTechStackByTag,
|
|
@@ -1096,12 +1095,8 @@ function getTechStackByTag(tag) {
|
|
|
1096
1095
|
function getProjectsByTechnology(tag) {
|
|
1097
1096
|
return projects.filter((project) => project.technologies.includes(tag));
|
|
1098
1097
|
}
|
|
1099
|
-
function gaboLog() {
|
|
1100
|
-
console.log({ project: projects, tech: techStack });
|
|
1101
|
-
}
|
|
1102
1098
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1103
1099
|
0 && (module.exports = {
|
|
1104
|
-
gaboLog,
|
|
1105
1100
|
getProjectBySlug,
|
|
1106
1101
|
getProjectsByTechnology,
|
|
1107
1102
|
getTechStackByTag,
|
package/dist/index.mjs
CHANGED
|
@@ -1065,11 +1065,7 @@ 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
|
-
}
|
|
1071
1068
|
export {
|
|
1072
|
-
gaboLog,
|
|
1073
1069
|
getProjectBySlug,
|
|
1074
1070
|
getProjectsByTechnology,
|
|
1075
1071
|
getTechStackByTag,
|