@tmdjr/ngx-editor-js2 20.0.5 → 20.0.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmdjr/ngx-editor-js2",
3
- "version": "20.0.5",
3
+ "version": "20.0.6",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "^20.0.4",
@@ -184,7 +184,7 @@ import 'codemirror/mode/xml/xml';
184
184
  @use "codemirror/theme/material-palenight";
185
185
  `;
186
186
  if (!stylesContent.includes('CODEMIRROR Dependencies')) {
187
- tree.overwrite(stylesPath, stylesContent + codeMirrorStyles);
187
+ tree.overwrite(stylesPath, codeMirrorStyles + stylesContent); // pachinko
188
188
  context.logger.info('CodeMirror styles added to styles.scss');
189
189
  }
190
190
  }
@@ -249,7 +249,7 @@ import 'codemirror/mode/xml/xml';
249
249
  `;
250
250
 
251
251
  if (!stylesContent.includes('CODEMIRROR Dependencies')) {
252
- tree.overwrite(stylesPath, stylesContent + codeMirrorStyles);
252
+ tree.overwrite(stylesPath, codeMirrorStyles + stylesContent); // pachinko
253
253
  context.logger.info('CodeMirror styles added to styles.scss');
254
254
  }
255
255
  } else {