From 30a3e964bdac7512ef0a94009fdaee57d1262043 Mon Sep 17 00:00:00 2001 From: Roman Axelrod Date: Tue, 4 Oct 2022 05:19:55 +0300 Subject: [PATCH] - Generate technical repo files. #Create Block from registry. --- generators/block/index.js | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/generators/block/index.js b/generators/block/index.js index 23a84e5..3695f85 100644 --- a/generators/block/index.js +++ b/generators/block/index.js @@ -134,30 +134,6 @@ export default class extends Generator { // Technical Project files. createTechnicalFiles(data, baseDir).then(); - - // this.fs.copyTpl( - // this.templatePath('package.json'), - // this.destinationPath(path.join(pathDist, 'package.json')), - // data - // ); - // - // this.fs.copyTpl( - // this.templatePath('README.md'), - // this.destinationPath(path.join(pathDist, 'README.md')), - // data - // ); - // - // this.fs.copyTpl( - // this.templatePath('.editorconfig'), - // this.destinationPath(path.join(pathDist, '.editorconfig')), - // data - // ); - // - // this.fs.copyTpl( - // this.templatePath('.gitignore'), - // this.destinationPath(path.join(pathDist, '.gitignore')), - // data - // ); } }