@atlaskit/editor-plugins 13.0.0 → 13.0.1
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 +6 -0
- package/package.json +2 -2
- package/scripts/entrypoint-data.ts +4 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.1",
|
|
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",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"@atlaskit/editor-plugin-metrics": "9.0.0",
|
|
99
99
|
"@atlaskit/editor-plugin-panel": "10.0.0",
|
|
100
100
|
"@atlaskit/editor-plugin-paste": "9.0.0",
|
|
101
|
-
"@atlaskit/editor-plugin-paste-options-toolbar": "9.0.
|
|
101
|
+
"@atlaskit/editor-plugin-paste-options-toolbar": "9.0.1",
|
|
102
102
|
"@atlaskit/editor-plugin-placeholder": "8.0.0",
|
|
103
103
|
"@atlaskit/editor-plugin-placeholder-text": "9.0.0",
|
|
104
104
|
"@atlaskit/editor-plugin-primary-toolbar": "9.0.0",
|
|
@@ -123,7 +123,10 @@ function createExportStatementsForExport(importName: string, filePath: string) {
|
|
|
123
123
|
return exportStatements.join('\n');
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
export function findExportedVariablesAndTypes(fileName: string) {
|
|
126
|
+
export function findExportedVariablesAndTypes(fileName: string): {
|
|
127
|
+
variableExports: string[];
|
|
128
|
+
typeExports: string[];
|
|
129
|
+
} {
|
|
127
130
|
const exportNames = getFileExportNames(fileName);
|
|
128
131
|
const statements = getFileTopLevelStatements(fileName);
|
|
129
132
|
const variableExports: string[] = [];
|