@dytsou/intern-corner-scheduler 1.2.2 → 1.2.6

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Round-Table Scheduler by dytsou
3
+ Copyright (c) 2026 Round-Table Scheduler by dytsou
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/index.html CHANGED
@@ -1,16 +1,14 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Round-Table Scheduler</title>
8
+ </head>
3
9
 
4
- <head>
5
- <meta charset="UTF-8" />
6
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
7
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
- <title>Round-Table Scheduler</title>
9
- </head>
10
-
11
- <body>
12
- <div id="root"></div>
13
- <script type="module" src="/src/main.jsx"></script>
14
- </body>
15
-
16
- </html>
10
+ <body>
11
+ <div id="root"></div>
12
+ <script type="module" src="/src/main.jsx"></script>
13
+ </body>
14
+ </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dytsou/intern-corner-scheduler",
3
- "version": "1.2.2",
3
+ "version": "1.2.6",
4
4
  "type": "module",
5
5
  "description": "Round-table Scheduler (CP-SAT) - Python CLI and web interface using OR-Tools CP-SAT to generate round-table seating across rounds with fixed hosts, balanced tables, and pair-wise constraints",
6
6
  "author": "dytsou",
@@ -31,6 +31,8 @@
31
31
  "build": "vite build && node scripts/create-nojekyll.js",
32
32
  "preview": "vite preview",
33
33
  "lint": "eslint . --ext js,jsx --ignore-pattern 'docs/**' --report-unused-disable-directives --max-warnings 0",
34
+ "format": "prettier --write \"src/**/*.{js,jsx,json,css}\" \"scripts/**/*.js\" \"*.{js,json,html}\"",
35
+ "format:check": "prettier --check \"src/**/*.{js,jsx,json,css}\" \"scripts/**/*.js\" \"*.{js,json,html}\"",
34
36
  "publish:npmjs": "npm publish --access public --registry https://registry.npmjs.org"
35
37
  },
36
38
  "dependencies": {
@@ -42,13 +44,15 @@
42
44
  "@types/react-dom": "^19.2.3",
43
45
  "@vitejs/plugin-react": "^5.1.1",
44
46
  "eslint": "^9.39.1",
47
+ "eslint-config-prettier": "^10.1.8",
45
48
  "eslint-plugin-react": "^7.37.5",
46
49
  "eslint-plugin-react-hooks": "^7.0.1",
47
50
  "eslint-plugin-react-refresh": "^0.4.24",
51
+ "prettier": "^3.7.4",
48
52
  "vite": "^7.2.4"
49
53
  },
50
54
  "publishConfig": {
51
55
  "access": "public",
52
56
  "registry": "https://registry.npmjs.org/"
53
57
  }
54
- }
58
+ }
@@ -5,4 +5,3 @@ import { join } from 'path';
5
5
  const nojekyllPath = join(process.cwd(), 'docs', '.nojekyll');
6
6
  writeFileSync(nojekyllPath, '');
7
7
  console.log('Created .nojekyll file in docs/');
8
-