@devexpress/analytics-core-cli 24.2.5 → 25.1.1-alpha

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,7 @@
1
1
  {
2
2
  "name": "@devexpress/analytics-core-cli",
3
- "version": "24.2.5",
3
+ "private": false,
4
+ "version": "25.1.1-alpha",
4
5
  "homepage": "https://www.devexpress.com/",
5
6
  "bugs": "https://www.devexpress.com/support/",
6
7
  "author": "Developer Express Inc.",
@@ -11,18 +12,13 @@
11
12
  ],
12
13
  "license": "SEE LICENSE IN README.md",
13
14
  "dependencies": {
14
- "inquirer": "^8.0.0",
15
15
  "js-code-parser": "0.0.1",
16
16
  "knockout": "3.5.1",
17
+ "inquirer": "^8.0.0",
17
18
  "typescript": "<5.3.0"
18
19
  },
19
- "peerDependencies": {
20
- "@devexpress/analytics-core": "24.2.5"
21
- },
22
- "peerDependenciesMeta": {
23
- "@devexpress/analytics-core": {
24
- "optional": true
25
- }
26
- },
27
- "commitSHA": "eadbde5419c7c681a9b7959ed350211c84633c06"
28
- }
20
+ "commitSHA": "6f72d986b42388ed6820228494e81485fc1304e0",
21
+ "scripts": {
22
+ "build": "echo done"
23
+ }
24
+ }
@@ -1,10 +1,3 @@
1
- /**
2
- * DevExpress Analytics CLI (utils\_processBindings.js)
3
- * Version: 24.2.5
4
- * Build date: Feb 17, 2025
5
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
6
- * License: https://www.devexpress.com/Support/EULAs/universal.xml
7
- */
8
1
  const fs = require('fs');
9
2
  const path = require('path');
10
3
  const ko = require('knockout');
@@ -1,10 +1,3 @@
1
- /**
2
- * DevExpress Analytics CLI (utils\processBindings.js)
3
- * Version: 24.2.5
4
- * Build date: Feb 17, 2025
5
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
6
- * License: https://www.devexpress.com/Support/EULAs/universal.xml
7
- */
8
1
  const fs = require('fs');
9
2
  const generateBindingsCode = require('./_processBindings').generateBindingsCode;
10
3
  const inquirer = require('inquirer');
@@ -1,13 +1,5 @@
1
- /**
2
- * DevExpress Analytics CLI (utils\theme-builder.js)
3
- * Version: 24.2.5
4
- * Build date: Feb 17, 2025
5
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
6
- * License: https://www.devexpress.com/Support/EULAs/universal.xml
7
- */
8
- const fs = require("fs"),
9
- path = require("path"),
10
- analyticsPath = path.dirname(require.resolve("@devexpress/analytics-core"))
1
+ const fs = require("fs"),
2
+ path = require("path");
11
3
 
12
4
  var defaultThemes = {
13
5
  "generic": {
@@ -37,7 +29,7 @@ var defaultThemes = {
37
29
  }
38
30
  };
39
31
 
40
- function buildTheme(nodeLess, baseTheme, variables) {
32
+ function buildTheme(analyticsPath, nodeLess, baseTheme, variables) {
41
33
  var resolvePath = (lessFileName) => path.resolve(path.join(analyticsPath, "less"), lessFileName)
42
34
 
43
35
  var baseTheme = baseTheme || "generic.light";
@@ -1,10 +1,3 @@
1
- /**
2
- * DevExpress Analytics CLI (utils\typeResolver.js)
3
- * Version: 24.2.5
4
- * Build date: Feb 17, 2025
5
- * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
6
- * License: https://www.devexpress.com/Support/EULAs/universal.xml
7
- */
8
1
  const ts = require('typescript');
9
2
  const fs = require('fs');
10
3