devextreme-cli 1.5.0 → 1.5.2

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": "devextreme-cli",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "description": "DevExtreme CLI",
5
5
  "keywords": [
6
6
  "devexpress",
@@ -40,7 +40,7 @@
40
40
  "@yarnpkg/lockfile": "^1.1.0",
41
41
  "import-cwd": "^3.0.0",
42
42
  "ip": "^1.1.5",
43
- "less": "3.9.0",
43
+ "less": "3.13.1",
44
44
  "minimist": "^1.2.0",
45
45
  "mustache": "^3.0.1",
46
46
  "prompts": "^2.0.4",
@@ -74,5 +74,5 @@
74
74
  "typescript": "^4.0.2",
75
75
  "typescript-eslint-parser": "^22.0.0"
76
76
  },
77
- "gitHead": "60feb5c896aefd4f7b717b844547cd30f86b313e"
77
+ "gitHead": "5ee9255ab8afb5d38770b2cc74c798c5c549f629"
78
78
  }
@@ -41,7 +41,7 @@ async function runNgCommand(commandArguments, commandOptions, commandConfig) {
41
41
  const npmCommandName = hasNg && !toolingVersion ? 'ng' : 'npx';
42
42
  const ngCommandArguments = hasNg && !toolingVersion
43
43
  ? []
44
- : ['-p', `@angular/cli${toolingVersion}`, 'ng'];
44
+ : ['-p', '@angular/cli@v15-lts', 'ng'];
45
45
 
46
46
  ngCommandArguments.push(...commandArguments);
47
47
  return runCommand(npmCommandName, ngCommandArguments, commandConfig);
@@ -6,7 +6,6 @@
6
6
  "makeSwatch": true,
7
7
  "base": true,
8
8
  "widgets": [
9
- "treeview",
10
- "navbar"
9
+ "treeview"
11
10
  ]
12
11
  }
@@ -6,7 +6,6 @@
6
6
  "makeSwatch": true,
7
7
  "base": true,
8
8
  "widgets": [
9
- "treeview",
10
- "navbar"
9
+ "treeview"
11
10
  ]
12
11
  }
@@ -6,7 +6,6 @@
6
6
  "makeSwatch": true,
7
7
  "base": true,
8
8
  "widgets": [
9
- "treeview",
10
- "navbar"
9
+ "treeview"
11
10
  ]
12
11
  }
@@ -164,7 +164,7 @@ const runThemeBuilder = async rawOptions => {
164
164
  options.sassCompiler = scssCompiler;
165
165
  }
166
166
 
167
- options.lessCompiler = require('less/lib/less-node');
167
+ options.lessCompiler = require('less');
168
168
 
169
169
  options.lessCompiler.options = options.lessCompiler.options || {};
170
170
  options.lessCompiler.options['math'] = 'always';
@@ -1,8 +1,8 @@
1
1
  const packageJson = require('../../package.json');
2
2
  module.exports = {
3
- 'devextreme': '^22.2.3',
4
- 'devextreme-react': '^22.2.3',
5
- 'devextreme-vue': '^22.2.3',
3
+ 'devextreme': '^22.2.4',
4
+ 'devextreme-react': '^22.2.4',
5
+ 'devextreme-vue': '^22.2.4',
6
6
  'devextreme-cli': packageJson.version,
7
7
  'devextreme-schematics': 'latest'
8
8
  };
@@ -15,7 +15,7 @@ const getLocalNgVersion = () => {
15
15
  };
16
16
 
17
17
  const getPublicNgVersion = () => {
18
- const version = execSync('npm view @angular/cli version').toString();
18
+ const version = execSync('npm view @angular/cli@v15-lts version').toString();
19
19
  return new semver(version);
20
20
  };
21
21