@vixoniccom/footbal-score 1.4.0-dev.4 → 1.4.0-dev.5

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.4.0-dev.5](https://github.com/Vixonic/store-football-score/compare/v1.4.0-dev.4...v1.4.0-dev.5) (2025-08-21)
6
+
7
+
8
+ ### Features
9
+
10
+ * add cd action ([eeec0c3](https://github.com/Vixonic/store-football-score/commit/eeec0c3845b0e47fe807a2323d157fbe3d9ad8eb))
11
+
5
12
  ## [1.4.0-dev.4](https://github.com/Vixonic/store-football-score/compare/v1.4.0-dev.3...v1.4.0-dev.4) (2025-08-21)
6
13
 
7
14
  ## [1.4.0-dev.3](https://github.com/Vixonic/store-football-score/compare/v1.4.0-dev.2...v1.4.0-dev.3) (2025-08-19)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vixoniccom/footbal-score",
3
3
  "alias": "Resultados Deportivos",
4
- "version": "1.4.0-dev.4",
4
+ "version": "1.4.0-dev.5",
5
5
  "description": "Muestra resultados en vivo de fútbol.",
6
6
  "main": "main.js",
7
7
  "author": "",
@@ -10,9 +10,12 @@ const MILLISECONDS_PER_DAY = 24 * 60 * 60 * 1000
10
10
 
11
11
  export const getFixture = async (league: string, yesterday?: boolean, tomorrow?: boolean) => {
12
12
  const today = moment().format('YYYY-MM-DD')
13
- const year = moment().format('YYYY')
14
- const from = yesterday ? moment(Date.now() - MILLISECONDS_PER_DAY).format('YYYY-MM-DD') : today
15
- const to = tomorrow ? moment(Date.now() + MILLISECONDS_PER_DAY).format('YYYY-MM-DD') : today
13
+ let year = moment().format('YYYY')
14
+ year = '2023'
15
+ let from = yesterday ? moment(Date.now() - MILLISECONDS_PER_DAY).format('YYYY-MM-DD') : today
16
+ from = '2023-12-05'
17
+ let to = tomorrow ? moment(Date.now() + MILLISECONDS_PER_DAY).format('YYYY-MM-DD') : today
18
+ to = '2023-12-10'
16
19
  const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
17
20
 
18
21
  const options = {
package/build/index.html DELETED
@@ -1 +0,0 @@
1
- <!doctype html><html lang="en" style="position:absolute;height:100%;width:100%;overflow:hidden"><head><title></title><meta charset="utf-8"/></head><body style="margin:0;overflow:hidden"><div id="root" style="position:absolute;top:0;right:0;bottom:0;left:0;overflow:hidden"></div><script src="./main.js"></script></body></html>