@nrwl/cypress 13.8.8-beta.0 → 13.8.8-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/cypress",
|
|
3
|
-
"version": "13.8.8-beta.
|
|
3
|
+
"version": "13.8.8-beta.1",
|
|
4
4
|
"description": "Cypress plugin for Nx",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"migrations": "./migrations.json"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@nrwl/devkit": "13.8.8-beta.
|
|
37
|
-
"@nrwl/linter": "13.8.8-beta.
|
|
38
|
-
"@nrwl/workspace": "13.8.8-beta.
|
|
36
|
+
"@nrwl/devkit": "13.8.8-beta.1",
|
|
37
|
+
"@nrwl/linter": "13.8.8-beta.1",
|
|
38
|
+
"@nrwl/workspace": "13.8.8-beta.1",
|
|
39
39
|
"@cypress/webpack-preprocessor": "^5.9.1",
|
|
40
40
|
"chalk": "4.1.0",
|
|
41
41
|
"enhanced-resolve": "^5.8.3",
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
+
const hasher_1 = require("@nrwl/workspace/src/core/hasher/hasher");
|
|
4
5
|
function run(task, context) {
|
|
5
6
|
return (0, tslib_1.__awaiter)(this, void 0, void 0, function* () {
|
|
6
7
|
const cypressPluginConfig = context.workspaceConfig.pluginsConfig
|
|
7
8
|
? context.workspaceConfig.pluginsConfig['@nrwl/cypress']
|
|
8
9
|
: undefined;
|
|
9
10
|
const filter = cypressPluginConfig && cypressPluginConfig.hashingExcludesTestsOfDeps
|
|
10
|
-
?
|
|
11
|
-
:
|
|
11
|
+
? hasher_1.HashFilter.ExcludeTestsOfDeps
|
|
12
|
+
: hasher_1.HashFilter.AllFiles;
|
|
12
13
|
return context.hasher.hashTaskWithDepsAndContext(task, filter);
|
|
13
14
|
});
|
|
14
15
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hasher.js","sourceRoot":"","sources":["../../../../../../packages/cypress/src/executors/cypress/hasher.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"hasher.js","sourceRoot":"","sources":["../../../../../../packages/cypress/src/executors/cypress/hasher.ts"],"names":[],"mappings":";;;AAOA,mEAIgD;AAEhD,SAA8B,GAAG,CAC/B,IAAU,EACV,OAKC;;QAED,MAAM,mBAAmB,GAAG,OAAO,CAAC,eAAe,CAAC,aAAa;YAC/D,CAAC,CAAE,OAAO,CAAC,eAAe,CAAC,aAAa,CAAC,eAAe,CAAS;YACjE,CAAC,CAAC,SAAS,CAAC;QACd,MAAM,MAAM,GACV,mBAAmB,IAAI,mBAAmB,CAAC,0BAA0B;YACnE,CAAC,CAAC,mBAAU,CAAC,kBAAkB;YAC/B,CAAC,CAAC,mBAAU,CAAC,QAAQ,CAAC;QAC1B,OAAO,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IACjE,CAAC;CAAA;AAjBD,sBAiBC"}
|
package/src/utils/versions.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.eslintPluginCypressVersion = exports.cypressVersion = exports.nxVersion = void 0;
|
|
4
|
-
exports.nxVersion = '13.8.8-beta.
|
|
4
|
+
exports.nxVersion = '13.8.8-beta.1';
|
|
5
5
|
exports.cypressVersion = '^9.1.0';
|
|
6
6
|
exports.eslintPluginCypressVersion = '^2.10.3';
|
|
7
7
|
//# sourceMappingURL=versions.js.map
|