@xiboplayer/schedule 0.1.0 → 0.1.2

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.
@@ -176,10 +176,8 @@ Total: 14/14 passing
176
176
  ### Build Verification
177
177
 
178
178
  ```bash
179
- cd platforms/pwa && npm run build
180
- Built in 3.69s
181
- ✓ No errors
182
- ✓ All packages resolved
179
+ # From xiboplayer-pwa repo
180
+ pnpm run build
183
181
  ```
184
182
 
185
183
  ## Performance Metrics
@@ -216,7 +214,7 @@ const layouts = scheduleManager.getCurrentLayouts();
216
214
  ### With PWA Platform
217
215
 
218
216
  ```javascript
219
- // In platforms/pwa/src/main.ts
217
+ // In the PWA player (xiboplayer-pwa/src/main.ts)
220
218
  import { InterruptScheduler } from '@xiboplayer/schedule-advanced';
221
219
 
222
220
  const interruptScheduler = new InterruptScheduler();
@@ -281,19 +279,8 @@ const scheduleManager = new ScheduleManager({ interruptScheduler });
281
279
  cd packages/schedule-advanced
282
280
  npm test
283
281
 
284
- # Build PWA
285
- cd ../../platforms/pwa
286
- npm run build
287
-
288
- # Verify build
289
- ls -lh dist/
290
- ```
291
-
292
- ### Deployment
293
-
294
- ```bash
295
- # Deploy to production
296
- ./deploy-xlr-test.sh # Or production deploy script
282
+ # Build PWA (from xiboplayer-pwa repo)
283
+ pnpm run build
297
284
  ```
298
285
 
299
286
  ### Post-deployment Verification
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xiboplayer/schedule",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Complete scheduling solution: campaigns, dayparting, interrupts, and overlays",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -11,7 +11,7 @@
11
11
  "./overlays": "./src/overlays.js"
12
12
  },
13
13
  "dependencies": {
14
- "@xiboplayer/utils": "0.1.0"
14
+ "@xiboplayer/utils": "0.1.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "vitest": "^2.0.0"