Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_retention.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-04-27 12:55:46 +0300
committerGitHub <noreply@github.com>2022-04-27 12:55:46 +0300
commite9aaca4796b224a10b55a8a64a7941e398c436cd (patch)
tree04e37598d646f3e9939593c80b12b36dfba33478
parent0db4b5bc31d685b2ee2f6bd10fb2a00b6fe8b5a8 (diff)
parenteedfeeb88a326b966eb5ab84f66ab0334c5feed9 (diff)
Merge pull request #169 from nextcloud/remove-package-file
Try to remove the package file for the release script
-rw-r--r--.github/workflows/check-handlebars-templates.yml15
-rw-r--r--package-lock.json15
-rw-r--r--package.json13
3 files changed, 4 insertions, 39 deletions
diff --git a/.github/workflows/check-handlebars-templates.yml b/.github/workflows/check-handlebars-templates.yml
index 8bb205c..0bda688 100644
--- a/.github/workflows/check-handlebars-templates.yml
+++ b/.github/workflows/check-handlebars-templates.yml
@@ -14,20 +14,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- - name: Read package.json node and npm engines version
- uses: skjnldsv/read-package-engines-version-actions@v1.1
- id: versions
- with:
- fallbackNode: '^12'
- fallbackNpm: '^6'
-
- - name: Set up node ${{ steps.versions.outputs.nodeVersion }}
+ - name: Set up node 14
uses: actions/setup-node@v2
with:
- node-version: ${{ steps.versions.outputs.nodeVersion }}
+ node-version: 14
- - name: Set up npm ${{ steps.versions.outputs.npmVersion }}
- run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
+ - name: Set up npm ^7
+ run: npm i -g npm@^7
- name: Install handlebars
run: |
diff --git a/package-lock.json b/package-lock.json
deleted file mode 100644
index 0464aaf..0000000
--- a/package-lock.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "name": "files_retention",
- "lockfileVersion": 2,
- "requires": true,
- "packages": {
- "": {
- "name": "files_retention",
- "license": "agpl",
- "engines": {
- "node": "^14.0.0",
- "npm": "^7.0.0"
- }
- }
- }
-}
diff --git a/package.json b/package.json
deleted file mode 100644
index 4f0b4c3..0000000
--- a/package.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "name": "files_retention",
- "description": "This application allows for automatic deletion of files after a given time.",
- "author": "Roeland Jago Douma",
- "contributors": [],
- "homepage": "https://github.com/nextcloud/files_retention",
- "license": "agpl",
- "private": true,
- "engines": {
- "node": "^14.0.0",
- "npm": "^7.0.0"
- }
-}