From 8894b2944dc5cf62a3cf465f661abd03fce72a50 Mon Sep 17 00:00:00 2001 From: Bertrand Ernst Date: Mon, 10 Jun 2024 10:39:07 +0200 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ README.md | 1 + index.ts | 3 +++ package-lock.json | 38 ++++++++++++++++++++++++++++++++++++++ package.json | 18 ++++++++++++++++++ 5 files changed, 62 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 index.ts create mode 100644 package-lock.json create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a1537b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +node_modules diff --git a/README.md b/README.md new file mode 100644 index 0000000..3de81a5 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# This is a test repo for gitea actions \ No newline at end of file diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..f28c8ac --- /dev/null +++ b/index.ts @@ -0,0 +1,3 @@ +const helloMessage: string = 'Hello there !'; + +console.log(helloMessage); diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..b5a52cb --- /dev/null +++ b/package-lock.json @@ -0,0 +1,38 @@ +{ + "name": "test", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "test", + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "typescript": "^5.4.5" + } + }, + "node_modules/typescript": { + "version": "5.4.5", + "resolved": "https://nexus.aegaeon-it.com/repository/npm-group-public/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + } + }, + "dependencies": { + "typescript": { + "version": "5.4.5", + "resolved": "https://nexus.aegaeon-it.com/repository/npm-group-public/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..6cef890 --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "name": "test", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://demo.gitea.com/bernst/test.git" + }, + "author": "", + "license": "ISC", + "devDependencies": { + "typescript": "^5.4.5" + } +}