@dytsou/resume-converter 2.0.2 → 2.0.3

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.
@@ -21,12 +21,12 @@ jobs:
21
21
  id-token: write
22
22
  steps:
23
23
  - name: Checkout code
24
- uses: actions/checkout@v4
24
+ uses: actions/checkout@v6
25
25
  with:
26
26
  fetch-depth: 0
27
27
 
28
28
  - name: Setup Node.js
29
- uses: actions/setup-node@v4
29
+ uses: actions/setup-node@v6
30
30
  with:
31
31
  node-version: '20'
32
32
 
@@ -162,7 +162,7 @@ jobs:
162
162
 
163
163
  - name: Create GitHub Release
164
164
  if: steps.should-create-release.outputs.should_create == 'true'
165
- uses: softprops/action-gh-release@v1
165
+ uses: softprops/action-gh-release@v2
166
166
  with:
167
167
  tag_name: v${{ steps.package-version.outputs.version }}
168
168
  name: v${{ steps.package-version.outputs.version }}
package/latex/resume.tex CHANGED
@@ -212,7 +212,7 @@
212
212
  \section{Laboratory Experiences}
213
213
  \resumeHeadingListStart{}
214
214
  \resumeQuadHeadingDetails{\href{https://sqlab.web.nycu.edu.tw}{Software Quality Lab}}{Sept. 2025 -- Present}
215
- {The Influence of AI-Generated Testing on Developer Productivity}
215
+ {Context-Aware Prompt Design for Go Codebase Testing: Harnessing Insights from Industry Needs}
216
216
  \resumeItemListStart{}
217
217
  \resumeItem{Integrated \textbf{AI-assisted test generation into development workflows} to achieve measurable gains in efficiency and coverage.}
218
218
  \resumeItem{\textbf{Researched the impact of AI-generated testing} on developer productivity and software quality, with a focus on quantitative results.}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dytsou/resume-converter",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "@unified-latex/unified-latex-to-hast": "^1.8.3",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@eslint/js": "^9.39.1",
17
- "@types/react": "^19.2.6",
17
+ "@types/react": "^19.2.7",
18
18
  "@types/react-dom": "^19.2.3",
19
19
  "@vitejs/plugin-react": "^5.1.1",
20
20
  "eslint": "^9.39.1",
@@ -22,7 +22,7 @@
22
22
  "eslint-plugin-react-refresh": "^0.4.11",
23
23
  "globals": "^16.5.0",
24
24
  "typescript": "^5.5.3",
25
- "typescript-eslint": "^8.47.0",
25
+ "typescript-eslint": "^8.48.0",
26
26
  "vite": "^7.2.4"
27
27
  },
28
28
  "publishConfig": {
@@ -34,6 +34,7 @@
34
34
  "convert": "node scripts/convert-latex.mjs",
35
35
  "lint": "eslint .",
36
36
  "preview": "vite preview",
37
- "typecheck": "tsc --noEmit -p tsconfig.app.json"
37
+ "typecheck": "tsc --noEmit -p tsconfig.app.json",
38
+ "release": "pnpm run convert && pnpm run build && pnpm run publish"
38
39
  }
39
40
  }