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:
-rw-r--r--.github/workflows/check-handlebars-templates.yml15
-rw-r--r--package-lock.json16
-rw-r--r--package.json13
3 files changed, 4 insertions, 40 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 ca12acd..0000000
--- a/package-lock.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "name": "files_retention",
- "version": "1.13.0",
- "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"
- }
-}