@eeplatform/nuxt-layer-common 1.7.10 → 1.7.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eeplatform/nuxt-layer-common
2
2
 
3
+ ## 1.7.11
4
+
5
+ ### Patch Changes
6
+
7
+ - ed0029f: Add school year generator
8
+
3
9
  ## 1.7.10
4
10
 
5
11
  ### Patch Changes
@@ -104,8 +104,11 @@ export default function useBasicEdu() {
104
104
  },
105
105
  ];
106
106
 
107
- function generateSchoolYears(generation = 0, mode = "past") {
108
- const currentYear = new Date().getFullYear();
107
+ function generateSchoolYears(
108
+ generation = 0,
109
+ mode = "past",
110
+ currentYear = new Date().getFullYear()
111
+ ) {
109
112
  const years = [];
110
113
 
111
114
  if (mode === "past") {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@eeplatform/nuxt-layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "1.7.10",
5
+ "version": "1.7.11",
6
6
  "main": "./nuxt.config.ts",
7
7
  "publishConfig": {
8
8
  "access": "public"