dceky 1.0.5-beta.ky-declarations.9 → 1.0.5-beta.ky-declarations.10

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.
@@ -10,11 +10,11 @@ var setupCypressDependencies_1 = __importDefault(require("./setupCypressDependen
10
10
  var checkRequiredFiles_1 = __importDefault(require("./checkRequiredFiles"));
11
11
  var genE2ELaunchFile_1 = __importDefault(require("./genE2ELaunchFile"));
12
12
  var genKyCommandDeclarations_1 = __importDefault(require("./genKyCommandDeclarations"));
13
+ (0, setupCypressDependencies_1.default)();
13
14
  (0, checkRequiredFiles_1.default)();
14
15
  (0, genCommandImportFile_1.default)();
15
16
  (0, genDynamicConfigFile_1.default)();
16
17
  (0, addToGitIgnore_1.default)();
17
- (0, setupCypressDependencies_1.default)();
18
18
  (0, genE2ELaunchFile_1.default)();
19
19
  (0, genKyCommandDeclarations_1.default)();
20
20
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../setup/index.ts"],"names":[],"mappings":";;;;;AAAA,gFAA0D;AAC1D,gFAA0D;AAC1D,oEAA8C;AAC9C,wFAAkE;AAClE,4EAAsD;AACtD,wEAAkD;AAClD,wFAAkE;AAElE,IAAA,4BAAkB,GAAE,CAAC;AACrB,IAAA,8BAAoB,GAAE,CAAC;AACvB,IAAA,8BAAoB,GAAE,CAAC;AACvB,IAAA,wBAAc,GAAE,CAAC;AACjB,IAAA,kCAAwB,GAAE,CAAC;AAC3B,IAAA,0BAAgB,GAAE,CAAC;AACnB,IAAA,kCAAwB,GAAE,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../setup/index.ts"],"names":[],"mappings":";;;;;AAAA,gFAA0D;AAC1D,gFAA0D;AAC1D,oEAA8C;AAC9C,wFAAkE;AAClE,4EAAsD;AACtD,wEAAkD;AAClD,wFAAkE;AAElE,IAAA,kCAAwB,GAAE,CAAC;AAC3B,IAAA,4BAAkB,GAAE,CAAC;AACrB,IAAA,8BAAoB,GAAE,CAAC;AACvB,IAAA,8BAAoB,GAAE,CAAC;AACvB,IAAA,wBAAc,GAAE,CAAC;AACjB,IAAA,0BAAgB,GAAE,CAAC;AACnB,IAAA,kCAAwB,GAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dceky",
3
- "version": "1.0.5-beta.ky-declarations.9",
3
+ "version": "1.0.5-beta.ky-declarations.10",
4
4
  "description": "Cypress toolkit for Harvard DCE",
5
5
  "main": "./lib/src/index.js",
6
6
  "types": "./lib/src/index.d.ts",
@@ -9,6 +9,7 @@
9
9
  "ky:start": "npx tsx ./start/index.ts",
10
10
  "ky:setup": "npx tsx ./setup/index.ts",
11
11
  "ky:dev": "npm run ky:setup && npm run ky:start",
12
+ "preinstall": "npx tsx ./preinstall/index.ts",
12
13
  "postinstall": "npx tsx ./postinstall/index.ts"
13
14
  },
14
15
  "repository": {
@@ -0,0 +1,13 @@
1
+ import path from 'path';
2
+
3
+ /**
4
+ * Get the root path of the project
5
+ * @author Yuen Ler Chow
6
+ * @returns the root path of the project
7
+ */
8
+ const getRootPath = () => {
9
+ const root = path.join(__dirname, '../../../../');
10
+ return root;
11
+ };
12
+
13
+ export default getRootPath;
@@ -0,0 +1,26 @@
1
+ /* eslint-disable no-console */
2
+ /**
3
+ * Make sure cypress folder is created
4
+ * @author Gabe Abrams
5
+ */
6
+
7
+ // Import libs
8
+ import fs from 'fs';
9
+ import path from 'path';
10
+
11
+ // Import helpers
12
+ import getRootPath from './helpers/getRootPath';
13
+
14
+ // Get the project directory
15
+ const root = getRootPath();
16
+
17
+ // Check for cypress folder
18
+ const cypressDir = path.join(root, 'cypress');
19
+ const cypressExists = fs.existsSync(cypressDir);
20
+ if (!cypressExists) {
21
+ console.log('Install cypress before installing dceky:');
22
+ console.log('1. Run "npm i cypress --save-dev"');
23
+ console.log('2. Run "npx cypress open" and follow configuration instructions');
24
+ console.log('3. Run "npm i dceky --save-dev');
25
+ process.exit(1);
26
+ }
package/setup/index.ts CHANGED
@@ -6,10 +6,10 @@ import checkRequiredFiles from './checkRequiredFiles';
6
6
  import genE2ELaunchFile from './genE2ELaunchFile';
7
7
  import genKyCommandDeclarations from './genKyCommandDeclarations';
8
8
 
9
+ setupCypressDependencies();
9
10
  checkRequiredFiles();
10
11
  genCommandImportFile();
11
12
  genDynamicConfigFile();
12
13
  addToGitIgnore();
13
- setupCypressDependencies();
14
14
  genE2ELaunchFile();
15
15
  genKyCommandDeclarations();
package/tsconfig.json CHANGED
@@ -11,7 +11,13 @@
11
11
  "lib": ["es5", "es2015.promise", "es2017.object", "dom"],
12
12
  "outDir": "./lib"
13
13
  },
14
- "include": [ "./src", "setup", "start", "postinstall" ],
14
+ "include": [
15
+ "./src",
16
+ "setup",
17
+ "start",
18
+ "preinstall",
19
+ "postinstall"
20
+ ],
15
21
  "ts-node": {
16
22
  "files": true
17
23
  }