Skip to content

Added first components diploma supplement generation #795

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Feb 6, 2025
16 changes: 14 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,13 @@ jobs:
working-directory: '${{ needs.config.outputs.frontend }}'
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Corepack update
run: |
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
npm install -g corepack@latest
echo "After: corepack version => $(corepack --version)"
corepack enable
pnpm --version
- uses: actions/setup-node@v4
with:
node-version: 20
Expand All @@ -112,7 +118,13 @@ jobs:
working-directory: '${{ needs.config.outputs.frontend }}'
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Corepack update
run: |
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
npm install -g corepack@latest
echo "After: corepack version => $(corepack --version)"
corepack enable
pnpm --version
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
1 change: 1 addition & 0 deletions Epsilon.Abstractions/LearningDomainOutcome.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ public record LearningDomainOutcome : Entity<int>
public LearningDomainType Value { get; set; } = null!;
[Required]
public string Name { get; set; } = null!;
public string Description { get; set; } = null!;
public LearningDomain Domain { get; set; } = null!;
}
34 changes: 17 additions & 17 deletions Epsilon.Host.Frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,33 +17,33 @@
"dependencies": {
"@mdi/font": "^7.4.47",
"apexcharts": "^4.4.0",
"nuxt": "^3.14.1592",
"pinia": "^2.2.6",
"posthog-js": "^1.194.1",
"nuxt": "^3.15.4",
"pinia": "^2.3.1",
"posthog-js": "^1.215.4",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue3-apexcharts": "^1.8.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@nuxt/devtools": "^1.6.1",
"@nuxt/eslint-config": "^1.0.0",
"@nuxt/schema": "^3.14.1592",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.3",
"@eslint/js": "^9.19.0",
"@nuxt/devtools": "^1.7.0",
"@nuxt/eslint-config": "^0.7.6",
"@nuxt/schema": "^3.15.4",
"@types/jsonwebtoken": "^9.0.8",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.13.0",
"h3": "^1.13.0",
"globals": "^15.14.0",
"h3": "^1.14.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"sass": "^1.81.0",
"typescript-eslint": "^8.16.0",
"vite-plugin-vuetify": "^2.0.4",
"vuetify": "^3.7.4"
"sass": "^1.84.0",
"typescript-eslint": "^8.23.0",
"vite-plugin-vuetify": "^2.1.0",
"vuetify": "^3.7.11"
}
}
Loading
Loading