Skip to content

Commit 9c0d4c4

Browse files
committed
frontend/submission: add cypress-file-upload to devDependencies
1 parent 161305c commit 9c0d4c4

File tree

7 files changed

+27
-43
lines changed

7 files changed

+27
-43
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
[ {"cypress": "9.5.3"}
2-
, {"cypress-file-upload": "5.0.8"}
3-
]
1+
[ {"cypress": "9.5.3"} ]

frontend/nix/tools/cypress/node-packages.nix

+5-23
Original file line numberDiff line numberDiff line change
@@ -427,13 +427,13 @@ let
427427
sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
428428
};
429429
};
430-
"dayjs-1.11.1" = {
430+
"dayjs-1.11.0" = {
431431
name = "dayjs";
432432
packageName = "dayjs";
433-
version = "1.11.1";
433+
version = "1.11.0";
434434
src = fetchurl {
435-
url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.1.tgz";
436-
sha512 = "ER7EjqVAMkRRsxNCC5YqJ9d9VQYuWdGt7aiH2qA5R5wt8ZmWaP2dLUSIK6y/kVzLMlmh1Tvu5xUf4M/wdGJ5KA==";
435+
url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.0.tgz";
436+
sha512 = "JLC809s6Y948/FuCZPm5IX8rRhQwOiyMb2TfVVQEixG7P8Lm/gt5S7yoQZmC8x1UehI9Pb7sksEt4xx14m+7Ug==";
437437
};
438438
};
439439
"debug-3.2.7" = {
@@ -1547,7 +1547,7 @@ in
15471547
sources."core-util-is-1.0.2"
15481548
sources."cross-spawn-7.0.3"
15491549
sources."dashdash-1.14.1"
1550-
sources."dayjs-1.11.1"
1550+
sources."dayjs-1.11.0"
15511551
(sources."debug-4.3.4" // {
15521552
dependencies = [
15531553
sources."ms-2.1.2"
@@ -1679,22 +1679,4 @@ in
16791679
bypassCache = true;
16801680
reconstructLock = true;
16811681
};
1682-
"cypress-file-upload-5.0.8" = nodeEnv.buildNodePackage {
1683-
name = "cypress-file-upload";
1684-
packageName = "cypress-file-upload";
1685-
version = "5.0.8";
1686-
src = fetchurl {
1687-
url = "https://registry.npmjs.org/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz";
1688-
sha512 = "+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g==";
1689-
};
1690-
buildInputs = globalBuildInputs;
1691-
meta = {
1692-
description = "A Cypress command for file upload";
1693-
homepage = "https://github.com/abramenal/cypress-file-upload#readme";
1694-
license = "MIT";
1695-
};
1696-
production = true;
1697-
bypassCache = true;
1698-
reconstructLock = true;
1699-
};
17001682
}

frontend/nix/tools/cypress/override.nix

+5-16
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,20 @@
44
let
55
nodePackages = import ./default.nix { inherit pkgs system; };
66

7-
cypressNpm = nodePackages."cypress-${pkgs.cypress.version}".override (oa: {
7+
cypressNpm = nodePackages."cypress-${pkgs.cypress.version}".override {
88
preRebuild = ''
99
export CYPRESS_INSTALL_BINARY=0
1010
'';
11-
dependencies = oa.dependencies ++ [ rec {
12-
name = "cypress-file-upload";
13-
packageName = name;
14-
version = "5.0.8";
15-
src = nodePackages."${packageName}-${version}".src;
16-
} ];
17-
});
11+
};
1812
in
19-
pkgs.writeScriptBin "cypress" ''
13+
(pkgs.writeScriptBin "cypress" ''
2014
#!${pkgs.runtimeShell} -e
2115
2216
[ -d ~/.config/Cypress ] && chmod -R +w ~/.config/Cypress
2317
export CYPRESS_RUN_BINARY=${pkgs.cypress}/bin/Cypress
2418
2519
export PATH=$PATH:${pkgs.lib.makeBinPath (with pkgs; [xorg.xorgserver which])}
2620
export FONTCONFIG_PATH=${pkgs.fontconfig.out}/etc/fonts
27-
export CYPRESS_NODE_PATH=$NODE_PATH:${nodePackages."cypress-file-upload-5.0.8"}
2821
29-
if [ -e cypress ]; then
30-
mkdir -p cypress/support/node_modules
31-
ln -s ${nodePackages."cypress-file-upload-5.0.8"}/lib/node_modules cypress/support/node_modules/cypress-file-upload
32-
fi
33-
${cypressNpm.override (oa: builtins.trace "dependencies: ${pkgs.lib.generators.toPretty {} oa}" oa)}/bin/cypress $@
34-
''
22+
${cypressNpm}/bin/cypress $@
23+
'')

frontend/submission/nix/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@types/react": "^17.0.2",
4747
"@types/react-dom": "^17.0.2",
4848
"@types/uuid": "^8.3.4",
49+
"cypress-file-upload": "^5.0.8",
4950
"eslint": "^8.12.0",
5051
"next-remove-imports": "^1.0.6",
5152
"typescript": "^4.6.3"

frontend/submission/nix/yarn.nix

+8
Original file line numberDiff line numberDiff line change
@@ -1233,6 +1233,14 @@
12331233
sha1 = "d66700c5eacfac1940deb4e3ee5642792d85cd33";
12341234
};
12351235
}
1236+
{
1237+
name = "cypress_file_upload___cypress_file_upload_5.0.8.tgz";
1238+
path = fetchurl {
1239+
name = "cypress_file_upload___cypress_file_upload_5.0.8.tgz";
1240+
url = "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz";
1241+
sha1 = "d8824cbeaab798e44be8009769f9a6c9daa1b4a1";
1242+
};
1243+
}
12361244
{
12371245
name = "dayjs___dayjs_1.10.6.tgz";
12381246
path = fetchurl {

frontend/submission/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"resolveJsonModule": true,
1414
"isolatedModules": true,
1515
"jsx": "preserve",
16-
"incremental": true
16+
"incremental": true,
17+
"types": ["cypress", "cypress-file-upload"]
1718
},
1819
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
1920
"exclude": ["node_modules"]

frontend/submission/yarn.lock

+5
Original file line numberDiff line numberDiff line change
@@ -1134,6 +1134,11 @@ csstype@^3.0.11, csstype@^3.0.2:
11341134
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33"
11351135
integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==
11361136

1137+
cypress-file-upload@^5.0.8:
1138+
version "5.0.8"
1139+
resolved "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz#d8824cbeaab798e44be8009769f9a6c9daa1b4a1"
1140+
integrity sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g==
1141+
11371142
dayjs@1.10.6:
11381143
version "1.10.6"
11391144
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.6.tgz#288b2aa82f2d8418a6c9d4df5898c0737ad02a63"

0 commit comments

Comments
 (0)