Skip to content

Commit 74e5a31

Browse files
authored
Merge pull request #56157 from nextcloud/fix/31-dependabot
[stable31] fix: adjust npm version to resolve corepack issue (dependabot)
2 parents 770de1c + 6f945bd commit 74e5a31

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,50 @@
11
{
22
"name": "nextcloud",
33
"version": "1.0.0",
4+
"private": true,
45
"description": "Nextcloud Server",
6+
"keywords": [
7+
"nextcloud"
8+
],
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/nextcloud/server.git"
12+
},
13+
"license": "AGPL-3.0-or-later",
514
"author": "Nextcloud GmbH and Nextcloud contributors",
6-
"private": true,
715
"directories": {
816
"lib": "lib",
917
"test": "tests"
1018
},
1119
"scripts": {
1220
"build": "webpack --node-env production --progress",
1321
"postbuild": "build/npm-post-build.sh",
22+
"cypress": "npm run cypress:component && npm run cypress:e2e",
23+
"cypress:component": "cypress run --component",
24+
"cypress:e2e": "cypress run --e2e",
25+
"cypress:gui": "cypress open",
26+
"cypress:version": "cypress version",
1427
"dev": "webpack --node-env development --progress",
15-
"watch": "webpack --node-env development --progress --watch",
1628
"lint": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"apps/$appdir \"; fi; done) core --no-error-on-unmatched-pattern",
1729
"lint:fix": "eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q $appdir); then printf \"apps/$appdir \"; fi; done) core --no-error-on-unmatched-pattern --fix",
30+
"sass": "sass --style compressed --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
31+
"sass:icons": "babel-node core/src/icons.js",
32+
"sass:watch": "sass --watch --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
1833
"stylelint": "stylelint '{apps,core}/**/*.{scss,vue}'",
1934
"stylelint:fix": "stylelint --fix '{apps,core}/**/*.{scss,vue}'",
2035
"test": "vitest run",
21-
"test:watch": "vitest watch",
2236
"test:coverage": "vitest run --coverage",
23-
"test:update-snapshots": "vitest run --update",
2437
"test:jsunit": "karma start tests/karma.config.js --single-run",
25-
"sass": "sass --style compressed --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
26-
"sass:watch": "sass --watch --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
27-
"sass:icons": "babel-node core/src/icons.js",
28-
"cypress": "npm run cypress:component && npm run cypress:e2e",
29-
"cypress:component": "cypress run --component",
30-
"cypress:e2e": "cypress run --e2e",
31-
"cypress:gui": "cypress open",
32-
"cypress:version": "cypress version"
33-
},
34-
"repository": {
35-
"type": "git",
36-
"url": "https://github.com/nextcloud/server.git"
38+
"test:update-snapshots": "vitest run --update",
39+
"test:watch": "vitest watch",
40+
"watch": "webpack --node-env development --progress --watch"
3741
},
38-
"keywords": [
39-
"nextcloud"
42+
"browserslist": [
43+
"extends @nextcloud/browserslist-config"
4044
],
41-
"license": "AGPL-3.0-or-later",
45+
"overrides": {
46+
"colors": "1.4.0"
47+
},
4248
"dependencies": {
4349
"@chenfengyuan/vue-qrcode": "^1.0.2",
4450
"@mdi/js": "^7.4.47",
@@ -195,14 +201,8 @@
195201
"webpack-merge": "^6.0.1",
196202
"workbox-webpack-plugin": "^7.3.0"
197203
},
198-
"browserslist": [
199-
"extends @nextcloud/browserslist-config"
200-
],
201204
"engines": {
202205
"node": "^20.0.0",
203-
"npm": "^10.0.0"
204-
},
205-
"overrides": {
206-
"colors": "1.4.0"
206+
"npm": "^10.5.0"
207207
}
208208
}

0 commit comments

Comments
 (0)