tractive-device-farm 2.0.0 → 2.1.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/.sequelizerc ADDED
@@ -0,0 +1,17 @@
1
+ const path = require("path");
2
+ const fs = require("fs");
3
+ const config = require("./lib/dashboard/config.js").config;
4
+
5
+ const dbConfig = {};
6
+ ["development", "test", "production"].forEach((env) => {
7
+ dbConfig[env] = {
8
+ dialect: "sqlite",
9
+ storage: path.join(config.databasePath, "database.sqlite"),
10
+ };
11
+ });
12
+ fs.writeFileSync("sequelize-config.json", JSON.stringify(dbConfig, null, 2));
13
+
14
+ module.exports = {
15
+ config: path.resolve("sequelize-config.json"),
16
+ "migrations-path": path.resolve("migrations"),
17
+ };
@@ -1 +1 @@
1
- Build date - Tue Jun 16 16:09:26 CEST 2026 by ana
1
+ Build date - Tue Jun 16 16:42:40 CEST 2026 by ana
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "tractive-device-farm",
3
- "version": "2.0.0",
3
+ "version": "2.1.1",
4
4
  "description": "Appium 2.x plugin that manages devices, sessions, builds, dashboard UI, and authentication — formed by merging tractive-appium-device-farm and tractive-appium-dashboard.",
5
5
  "files": [
6
6
  "lib",
7
7
  "scripts",
8
8
  "migrations",
9
- "sequelize-config.json"
9
+ "sequelize-config.json",
10
+ ".sequelizerc"
10
11
  ],
11
12
  "main": "./lib/index.js",
12
13
  "scripts": {
@@ -68,7 +69,7 @@
68
69
  "appium-base-driver": "^7.11.3",
69
70
  "appium-chromedriver": "^5.6.19",
70
71
  "appium-ios-device": "^2.7.6",
71
- "appium-ios-simulator": "^8.2.1",
72
+ "appium-ios-simulator": "^4.2.1",
72
73
  "appium-remote-debugger": "^9.0.0",
73
74
  "async-lock": "^1.2.8",
74
75
  "async-wait-until": "^2.0.12",