Compare commits

...

4 Commits

Author SHA1 Message Date
Jenkins Bot
2e5415ad55 Release: Merge develop to main 2026-01-05 21:44:30 +00:00
David Ali
0e5316c88b increment version 2026-01-05 22:43:05 +01:00
David Ali
39c3aa5000 fix: copy README.md too 2026-01-05 22:42:45 +01:00
David Ali
d314aab25d format Jenkinsfile 2026-01-05 22:42:25 +01:00
3 changed files with 54 additions and 52 deletions

View File

@@ -6,6 +6,7 @@ WORKDIR /app/wc-timer
# Kopiowanie plików manifestu i instalacja zależności # Kopiowanie plików manifestu i instalacja zależności
COPY package.json ./ COPY package.json ./
COPY README.md ./
RUN npm install RUN npm install
# Kopiowanie reszty plików projektu (kod źródłowy) # Kopiowanie reszty plików projektu (kod źródłowy)

View File

@@ -1,6 +1,6 @@
{ {
"name": "wc-timer", "name": "wc-timer",
"version": "1.0.0", "version": "1.0.1",
"description": "A lightweight, dependency-free countdown timer Web Component.", "description": "A lightweight, dependency-free countdown timer Web Component.",
"type": "module", "type": "module",
"main": "src/wc-timer.js", "main": "src/wc-timer.js",
@@ -8,7 +8,8 @@
".": "./src/wc-timer.js" ".": "./src/wc-timer.js"
}, },
"files": [ "files": [
"src" "src/wc-timer.js",
"README.md"
], ],
"scripts": { "scripts": {
"test": "echo 'Tests are running in Docker environment' && exit 0" "test": "echo 'Tests are running in Docker environment' && exit 0"