@tmdjr/ngx-editor-js2 20.0.9 → 20.0.11
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/package.json +1 -1
- package/schematics/ng-add/index.js +11 -2
- package/schematics/ng-add/index.ts +12 -2
package/package.json
CHANGED
|
@@ -91,10 +91,19 @@ function ngAdd(options) {
|
|
|
91
91
|
updateAppConfig(tree, blocks, context, sourceRoot);
|
|
92
92
|
addCodeMirrorSetup(tree, blocks, context, sourceRoot);
|
|
93
93
|
if (options.demo) {
|
|
94
|
+
const appPath = `${sourceRoot}/app`;
|
|
95
|
+
if (tree.exists(appPath)) {
|
|
96
|
+
context.logger.warn(`⚠️ Deleting existing app folder at ${appPath}`);
|
|
97
|
+
// Recursively delete everything under src/app
|
|
98
|
+
tree.getDir(appPath).visit(filePath => {
|
|
99
|
+
tree.delete(filePath);
|
|
100
|
+
});
|
|
101
|
+
}
|
|
94
102
|
rules.push((0, schematics_1.mergeWith)((0, schematics_1.apply)((0, schematics_1.url)('./files/demo'), [
|
|
95
|
-
(0, schematics_1.applyTemplates)({}),
|
|
96
|
-
(0, schematics_1.move)(
|
|
103
|
+
(0, schematics_1.applyTemplates)({}),
|
|
104
|
+
(0, schematics_1.move)(appPath),
|
|
97
105
|
])));
|
|
106
|
+
context.logger.info(`🚨 Demo files copied to ${appPath}. Existing app was replaced!`);
|
|
98
107
|
}
|
|
99
108
|
context.logger.info('✅ Installation setup complete.');
|
|
100
109
|
return (0, schematics_1.chain)(rules);
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
SchematicContext,
|
|
9
9
|
Tree,
|
|
10
10
|
url,
|
|
11
|
+
filter,
|
|
11
12
|
} from '@angular-devkit/schematics';
|
|
12
13
|
import { NodePackageInstallTask } from '@angular-devkit/schematics/tasks';
|
|
13
14
|
import {
|
|
@@ -106,14 +107,23 @@ export function ngAdd(options: any): Rule {
|
|
|
106
107
|
addCodeMirrorSetup(tree, blocks, context, sourceRoot);
|
|
107
108
|
|
|
108
109
|
if (options.demo) {
|
|
110
|
+
const appPath = `${sourceRoot}/app`;
|
|
111
|
+
if (tree.exists(appPath)) {
|
|
112
|
+
context.logger.warn(`⚠️ Deleting existing app folder at ${appPath}`);
|
|
113
|
+
// Recursively delete everything under src/app
|
|
114
|
+
tree.getDir(appPath).visit(filePath => {
|
|
115
|
+
tree.delete(filePath);
|
|
116
|
+
});
|
|
117
|
+
}
|
|
109
118
|
rules.push(
|
|
110
119
|
mergeWith(
|
|
111
120
|
apply(url('./files/demo'), [
|
|
112
|
-
applyTemplates({}),
|
|
113
|
-
move(
|
|
121
|
+
applyTemplates({}),
|
|
122
|
+
move(appPath),
|
|
114
123
|
])
|
|
115
124
|
)
|
|
116
125
|
);
|
|
126
|
+
context.logger.info(`🚨 Demo files copied to ${appPath}. Existing app was replaced!`);
|
|
117
127
|
}
|
|
118
128
|
|
|
119
129
|
context.logger.info('✅ Installation setup complete.');
|