@remult/angular
Advanced tools
Comparing version 2.2.7 to 2.2.8
{ | ||
"name": "@remult/angular", | ||
"schematics": "./schematics/collection.json", | ||
"version": "2.2.7", | ||
"version": "2.2.8", | ||
"description": "an angular module for remult", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -25,2 +25,3 @@ "use strict"; | ||
}); | ||
editGitIgnore(tree); | ||
let entryComponents = [{ name: 'YesNoQuestionComponent', path: './common/yes-no-question/yes-no-question.component' }, | ||
@@ -117,2 +118,9 @@ { name: 'InputAreaComponent', path: './common/input-area/input-area.component' }, | ||
} | ||
function editGitIgnore(tree) { | ||
let gitIgnorePath = './.gitignore'; | ||
let r = tree.read(gitIgnorePath); | ||
let content = r.toString('utf-8'); | ||
content += '\r\n.env'; | ||
tree.overwrite(gitIgnorePath, content); | ||
} | ||
function addToNgModule(tree, what) { | ||
@@ -119,0 +127,0 @@ var options = {}; |
Sorry, the diff of this file is not supported yet
1099927
13503