@atlaskit/editor-plugin-code-block-advanced 6.2.4 → 6.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atlaskit/editor-plugin-code-block-advanced
2
2
 
3
+ ## 6.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 6.2.5
10
+
11
+ ### Patch Changes
12
+
13
+ - [`21fe79119fe74`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/21fe79119fe74) -
14
+ EDITOR-2447 Bump adf-schema to 51.3.2
15
+ - Updated dependencies
16
+
3
17
  ## 6.2.4
4
18
 
5
19
  ### Patch Changes
@@ -0,0 +1,65 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.products.json",
3
+ "compilerOptions": {
4
+ "target": "es5",
5
+ "outDir": "../../../../../tsDist/@atlaskit__editor-plugin-code-block-advanced/app",
6
+ "rootDir": "../",
7
+ "composite": true
8
+ },
9
+ "include": [
10
+ "../src/**/*.ts",
11
+ "../src/**/*.tsx"
12
+ ],
13
+ "exclude": [
14
+ "../src/**/__tests__/*",
15
+ "../src/**/*.test.*",
16
+ "../src/**/test.*",
17
+ "../src/**/examples.*",
18
+ "../src/**/examples/*",
19
+ "../src/**/examples/**/*",
20
+ "../src/**/*.stories.*",
21
+ "../src/**/stories/*",
22
+ "../src/**/stories/**/*"
23
+ ],
24
+ "references": [
25
+ {
26
+ "path": "../../editor-plugin-block-menu/afm-products/tsconfig.json"
27
+ },
28
+ {
29
+ "path": "../../editor-plugin-code-block/afm-products/tsconfig.json"
30
+ },
31
+ {
32
+ "path": "../../editor-plugin-editor-disabled/afm-products/tsconfig.json"
33
+ },
34
+ {
35
+ "path": "../../editor-plugin-find-replace/afm-products/tsconfig.json"
36
+ },
37
+ {
38
+ "path": "../../editor-plugin-selection/afm-products/tsconfig.json"
39
+ },
40
+ {
41
+ "path": "../../editor-plugin-selection-marker/afm-products/tsconfig.json"
42
+ },
43
+ {
44
+ "path": "../../editor-toolbar/afm-products/tsconfig.json"
45
+ },
46
+ {
47
+ "path": "../../../design-system/icon/afm-products/tsconfig.json"
48
+ },
49
+ {
50
+ "path": "../../../platform/feature-flags/afm-products/tsconfig.json"
51
+ },
52
+ {
53
+ "path": "../../prosemirror-history/afm-products/tsconfig.json"
54
+ },
55
+ {
56
+ "path": "../../tmp-editor-statsig/afm-products/tsconfig.json"
57
+ },
58
+ {
59
+ "path": "../../../design-system/tokens/afm-products/tsconfig.json"
60
+ },
61
+ {
62
+ "path": "../../editor-common/afm-products/tsconfig.json"
63
+ }
64
+ ]
65
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-code-block-advanced",
3
- "version": "6.2.4",
3
+ "version": "6.2.6",
4
4
  "description": "CodeBlockAdvanced plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -28,7 +28,7 @@
28
28
  "sideEffects": false,
29
29
  "atlaskit:src": "src/index.ts",
30
30
  "dependencies": {
31
- "@atlaskit/adf-schema": "^51.3.1",
31
+ "@atlaskit/adf-schema": "^51.3.2",
32
32
  "@atlaskit/editor-plugin-block-menu": "^5.0.0",
33
33
  "@atlaskit/editor-plugin-code-block": "^8.1.0",
34
34
  "@atlaskit/editor-plugin-editor-disabled": "^6.1.0",
@@ -36,11 +36,11 @@
36
36
  "@atlaskit/editor-plugin-selection": "^6.1.0",
37
37
  "@atlaskit/editor-plugin-selection-marker": "^6.2.0",
38
38
  "@atlaskit/editor-prosemirror": "7.0.0",
39
- "@atlaskit/editor-toolbar": "^0.16.0",
39
+ "@atlaskit/editor-toolbar": "^0.17.0",
40
40
  "@atlaskit/icon": "^28.5.0",
41
41
  "@atlaskit/platform-feature-flags": "^1.1.0",
42
42
  "@atlaskit/prosemirror-history": "^0.2.0",
43
- "@atlaskit/tmp-editor-statsig": "^13.18.0",
43
+ "@atlaskit/tmp-editor-statsig": "^13.22.0",
44
44
  "@atlaskit/tokens": "^7.0.0",
45
45
  "@babel/runtime": "^7.0.0",
46
46
  "@codemirror/autocomplete": "6.18.4",
@@ -57,12 +57,12 @@
57
57
  "codemirror-lang-elixir": "4.0.0"
58
58
  },
59
59
  "peerDependencies": {
60
- "@atlaskit/editor-common": "^110.18.0",
60
+ "@atlaskit/editor-common": "^110.19.0",
61
61
  "react": "^18.2.0",
62
62
  "react-intl-next": "npm:react-intl@^5.18.1"
63
63
  },
64
64
  "devDependencies": {
65
- "@atlaskit/code": "^17.2.0"
65
+ "@atlaskit/code": "^17.3.0"
66
66
  },
67
67
  "techstack": {
68
68
  "@atlassian/frontend": {
@@ -1,65 +0,0 @@
1
- {
2
- "extends": "../../../../tsconfig.entry-points.townsquare.json",
3
- "compilerOptions": {
4
- "target": "es5",
5
- "outDir": "../../../../../townsquare/tsDist/@atlaskit__editor-plugin-code-block-advanced/app",
6
- "rootDir": "../",
7
- "composite": true
8
- },
9
- "include": [
10
- "../src/**/*.ts",
11
- "../src/**/*.tsx"
12
- ],
13
- "exclude": [
14
- "../src/**/__tests__/*",
15
- "../src/**/*.test.*",
16
- "../src/**/test.*",
17
- "../src/**/examples.*",
18
- "../src/**/examples/*",
19
- "../src/**/examples/**/*",
20
- "../src/**/*.stories.*",
21
- "../src/**/stories/*",
22
- "../src/**/stories/**/*"
23
- ],
24
- "references": [
25
- {
26
- "path": "../../editor-plugin-block-menu/afm-townsquare/tsconfig.json"
27
- },
28
- {
29
- "path": "../../editor-plugin-code-block/afm-townsquare/tsconfig.json"
30
- },
31
- {
32
- "path": "../../editor-plugin-editor-disabled/afm-townsquare/tsconfig.json"
33
- },
34
- {
35
- "path": "../../editor-plugin-find-replace/afm-townsquare/tsconfig.json"
36
- },
37
- {
38
- "path": "../../editor-plugin-selection/afm-townsquare/tsconfig.json"
39
- },
40
- {
41
- "path": "../../editor-plugin-selection-marker/afm-townsquare/tsconfig.json"
42
- },
43
- {
44
- "path": "../../editor-toolbar/afm-townsquare/tsconfig.json"
45
- },
46
- {
47
- "path": "../../../design-system/icon/afm-townsquare/tsconfig.json"
48
- },
49
- {
50
- "path": "../../../platform/feature-flags/afm-townsquare/tsconfig.json"
51
- },
52
- {
53
- "path": "../../prosemirror-history/afm-townsquare/tsconfig.json"
54
- },
55
- {
56
- "path": "../../tmp-editor-statsig/afm-townsquare/tsconfig.json"
57
- },
58
- {
59
- "path": "../../../design-system/tokens/afm-townsquare/tsconfig.json"
60
- },
61
- {
62
- "path": "../../editor-common/afm-townsquare/tsconfig.json"
63
- }
64
- ]
65
- }