Skip to content

Commit 96eb5ea

Browse files
Update to 1.1.0 (#88)
1 parent fe7b514 commit 96eb5ea

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

commands/application.angular.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const minNgCliVersion = new semver('7.2.0');
77

88
function runSchematicCommand(schematicCommand, options, evaluatingOptions) {
99
const collectionName = 'devextreme-schematics';
10-
let collectionPath = `${collectionName}@next`;
10+
let collectionPath = collectionName;
1111

1212
if(options['c']) {
1313
collectionPath = `"${path.join(process.cwd(), options['c'])}"`;

commands/application.react.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const preparePackageJsonForTemplate = (packagePath, appName) => {
3434
{ name: 'react-router-dom', version: '^5.0.0' }
3535
];
3636
const devDepends = [
37-
{ name: 'devextreme-cli', version: 'next' }
37+
{ name: 'devextreme-cli', version: 'latest' }
3838
];
3939
const scripts = [
4040
{ name: 'build-themes', value: 'devextreme build' },
@@ -121,7 +121,7 @@ const install = (options, appPath, styles) => {
121121
appPath = appPath ? appPath : process.cwd();
122122
const pathToMainComponent = path.join(appPath, 'src', 'App.js');
123123
addStylesToApp(pathToMainComponent, styles || defaultStyles);
124-
addDevextremeToPackageJson(appPath, options.dxversion || '19.1-next');
124+
addDevextremeToPackageJson(appPath, options.dxversion || 'latest');
125125

126126
runCommand('npm', ['install'], { cwd: appPath });
127127
};

commands/application.vue.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const preparePackageJsonForTemplate = (packagePath, appName) => {
3434
{ name: 'vue-router', version: '^3.0.1' }
3535
];
3636
const devDepends = [
37-
{ name: 'devextreme-cli', version: 'next' },
37+
{ name: 'devextreme-cli', version: 'latest' },
3838
{ name: 'sass-loader', version: '^7.1.0' }
3939
];
4040
const scripts = [
@@ -117,7 +117,7 @@ const install = (options, appPath, styles) => {
117117
appPath = appPath ? appPath : process.cwd();
118118
const mainModulePath = path.join(appPath, 'src', 'main.js');
119119
addStylesToApp(mainModulePath, styles || defaultStyles);
120-
addDevextremeToPackageJson(appPath, options.dxversion || '19.1-next');
120+
addDevextremeToPackageJson(appPath, options.dxversion || 'latest');
121121

122122
runCommand('npm', ['install'], { cwd: appPath });
123123
};

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devextreme-cli",
3-
"version": "1.1.0-beta.4",
3+
"version": "1.1.0",
44
"description": "DevExtreme CLI",
55
"keywords": [
66
"devexpress",
@@ -20,7 +20,7 @@
2020
"repository": "https://github.com/DevExpress/devextreme-cli",
2121
"license": "MIT",
2222
"dependencies": {
23-
"devextreme-themebuilder": "19.1-next",
23+
"devextreme-themebuilder": "^19.1.3",
2424
"less": "^3.8.1",
2525
"minimist": "^1.2.0",
2626
"mustache": "^3.0.1",

0 commit comments

Comments
 (0)