@atlaskit/editor-plugins 11.2.21 → 11.2.23
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 +12 -0
- package/package.json +5 -5
- package/scripts/generate-tests.ts +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.23",
|
|
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",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"@atlaskit/editor-plugin-before-primary-toolbar": "7.0.0",
|
|
40
40
|
"@atlaskit/editor-plugin-better-type-history": "7.0.0",
|
|
41
41
|
"@atlaskit/editor-plugin-block-controls": "8.0.4",
|
|
42
|
-
"@atlaskit/editor-plugin-block-menu": "6.0.
|
|
42
|
+
"@atlaskit/editor-plugin-block-menu": "6.0.9",
|
|
43
43
|
"@atlaskit/editor-plugin-block-type": "11.0.0",
|
|
44
44
|
"@atlaskit/editor-plugin-border": "7.0.0",
|
|
45
45
|
"@atlaskit/editor-plugin-breakout": "7.0.0",
|
|
46
46
|
"@atlaskit/editor-plugin-caption": "7.0.0",
|
|
47
|
-
"@atlaskit/editor-plugin-card": "12.0
|
|
47
|
+
"@atlaskit/editor-plugin-card": "12.1.0",
|
|
48
48
|
"@atlaskit/editor-plugin-clear-marks-on-empty-doc": "7.0.0",
|
|
49
49
|
"@atlaskit/editor-plugin-clipboard": "7.0.0",
|
|
50
50
|
"@atlaskit/editor-plugin-code-bidi-warning": "7.0.0",
|
|
@@ -106,9 +106,9 @@
|
|
|
106
106
|
"@atlaskit/editor-plugin-save-on-enter": "7.0.0",
|
|
107
107
|
"@atlaskit/editor-plugin-scroll-into-view": "7.0.0",
|
|
108
108
|
"@atlaskit/editor-plugin-selection": "7.0.0",
|
|
109
|
-
"@atlaskit/editor-plugin-selection-extension": "10.0.
|
|
109
|
+
"@atlaskit/editor-plugin-selection-extension": "10.0.2",
|
|
110
110
|
"@atlaskit/editor-plugin-selection-marker": "7.0.0",
|
|
111
|
-
"@atlaskit/editor-plugin-selection-toolbar": "8.0.
|
|
111
|
+
"@atlaskit/editor-plugin-selection-toolbar": "8.0.2",
|
|
112
112
|
"@atlaskit/editor-plugin-show-diff": "4.0.0",
|
|
113
113
|
"@atlaskit/editor-plugin-status": "8.0.0",
|
|
114
114
|
"@atlaskit/editor-plugin-submit-editor": "7.0.0",
|
|
@@ -9,7 +9,7 @@ import { formatCode } from './util';
|
|
|
9
9
|
export function generateAllPluginTests(
|
|
10
10
|
pluginToEntryPointsMap: Record<string, EntryPointData[]>,
|
|
11
11
|
testsPath: string,
|
|
12
|
-
) {
|
|
12
|
+
): void {
|
|
13
13
|
// Delete the files in the tests directory, leave folders alone
|
|
14
14
|
if (fs.existsSync(testsPath)) {
|
|
15
15
|
// Read the contents of the directory
|