Skip to content

Commit

Permalink
Update to 1.1.0-beta.3 (#79)
Browse files Browse the repository at this point in the history
* Update to 1.1.0-beta.3

* Update schematiocs version to next
  • Loading branch information
dxvladislavvolkov authored Apr 24, 2019
1 parent 2da7e99 commit d1384d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion commands/application.angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const minNgCliVersion = new semver('7.2.0');

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

if(options['c']) {
collectionPath = `"${path.join(process.cwd(), options['c'])}"`;
Expand Down
2 changes: 1 addition & 1 deletion commands/application.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const install = (options, appPath, styles) => {
appPath = appPath ? appPath : process.cwd();
const pathToMainComponent = path.join(appPath, 'src', 'App.js');
addStylesToApp(pathToMainComponent, styles || defaultStyles);
addDevextremeToPackageJson(appPath, options.dxversion || 'latest');
addDevextremeToPackageJson(appPath, options.dxversion || '19.1-next');

runCommand('npm', ['install'], { cwd: appPath });
};
Expand Down
2 changes: 1 addition & 1 deletion commands/application.vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const install = (options, appPath, styles) => {
appPath = appPath ? appPath : process.cwd();
const mainModulePath = path.join(appPath, 'src', 'main.js');
addStylesToApp(mainModulePath, styles || defaultStyles);
addDevextremeToPackageJson(appPath, options.dxversion || 'latest');
addDevextremeToPackageJson(appPath, options.dxversion || '19.1-next');

runCommand('npm', ['install'], { cwd: appPath });
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devextreme-cli",
"version": "1.1.0-beta.2",
"version": "1.1.0-beta.3",
"description": "DevExtreme CLI",
"keywords": [
"devexpress",
Expand Down

0 comments on commit d1384d2

Please sign in to comment.