@odvi/create-dtt-framework 0.1.15 → 0.1.16
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/dist/commands/create.js +1 -1
- package/package.json +1 -1
- package/template/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -106,7 +106,7 @@ export const createCommand = new Command('create')
|
|
|
106
106
|
packageJson.name = projectName;
|
|
107
107
|
packageJson.version = '0.1.0';
|
|
108
108
|
packageJson.dtt = {
|
|
109
|
-
version: '0.1.
|
|
109
|
+
version: '0.1.16' // Current framework version
|
|
110
110
|
};
|
|
111
111
|
await fs.writeJson(packageJsonPath, packageJson, { spaces: 2 });
|
|
112
112
|
spinner.succeed('Project configured');
|
package/package.json
CHANGED