@atlaskit/editor-plugins 12.0.43 → 12.0.44

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/editor-plugins
2
2
 
3
+ ## 12.0.44
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 12.0.43
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugins",
3
- "version": "12.0.43",
3
+ "version": "12.0.44",
4
4
  "description": "A convenience facade package that exposes all @atlaskit/editor-plugin-* plugins so that users can add this package without having to manually add all their plugins",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -103,7 +103,7 @@
103
103
  "@atlaskit/editor-plugin-placeholder": "7.2.14",
104
104
  "@atlaskit/editor-plugin-placeholder-text": "8.0.13",
105
105
  "@atlaskit/editor-plugin-primary-toolbar": "8.0.9",
106
- "@atlaskit/editor-plugin-quick-insert": "7.3.4",
106
+ "@atlaskit/editor-plugin-quick-insert": "7.4.0",
107
107
  "@atlaskit/editor-plugin-rule": "7.0.0",
108
108
  "@atlaskit/editor-plugin-save-on-enter": "7.0.0",
109
109
  "@atlaskit/editor-plugin-scroll-into-view": "7.0.0",
@@ -32,7 +32,7 @@ interface DependenciesDiffResult {
32
32
  updated: DependencyDiff[];
33
33
  }
34
34
 
35
- const foldersToIgnore: string[] = ['editor-plugin-code-block-advanced'];
35
+ const foldersToIgnore: string[] = ['editor-plugin-code-block-advanced', 'editor-plugin-native-embeds'];
36
36
 
37
37
  // Locate the root directory of the project
38
38
  const rootPath = findRootSync(process.cwd());