@atlaskit/adf-schema 28.1.4 → 28.1.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 +13 -0
- package/package.json +3 -20
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# @atlaskit/adf-schema
|
2
2
|
|
3
|
+
## 28.1.6
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- e25027e: Remove AF cruft from package.json
|
8
|
+
- e25027e: Remove AF package.json information
|
9
|
+
|
10
|
+
## 28.1.5
|
11
|
+
|
12
|
+
### Patch Changes
|
13
|
+
|
14
|
+
- aa524e9: Ensure we use the latest version of editor-prosemirror locally"
|
15
|
+
|
3
16
|
## 28.1.4
|
4
17
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atlaskit/adf-schema",
|
3
|
-
"version": "28.1.
|
3
|
+
"version": "28.1.6",
|
4
4
|
"description": "Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs",
|
5
5
|
"publishConfig": {
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
@@ -13,30 +13,13 @@
|
|
13
13
|
"module:es2019": "dist/es2019/index.js",
|
14
14
|
"types": "dist/types/index.d.ts",
|
15
15
|
"sideEffects": false,
|
16
|
-
"atlaskit:src": "src/index.ts",
|
17
|
-
"atlassian": {
|
18
|
-
"team": "Editor",
|
19
|
-
"singleton": true,
|
20
|
-
"inPublicMirror": true,
|
21
|
-
"releaseModel": "continuous"
|
22
|
-
},
|
23
|
-
"af:exports": {
|
24
|
-
".": "./src/index.ts",
|
25
|
-
"./steps": "./src/steps.ts",
|
26
|
-
"./schema": "./src/schema/index.ts",
|
27
|
-
"./json-schema": "./src/json-schema/index.ts",
|
28
|
-
"./url": "./src/utils/url.ts",
|
29
|
-
"./schema-bitbucket": "./src/schema/bitbucket-schema.ts",
|
30
|
-
"./schema-confluence": "./src/schema/confluence-schema.ts",
|
31
|
-
"./schema-jira": "./src/schema/jira-schema.ts",
|
32
|
-
"./schema-default": "./src/schema/default-schema.ts"
|
33
|
-
},
|
34
16
|
"scripts": {
|
35
17
|
"build:json-schema": "mkdir -p dist && cp -r json-schema dist",
|
36
18
|
"generate:json-schema": "mkdir -p json-schema/v1/ && yarn generate:json-schema:full && yarn generate:json-schema:stage-0",
|
37
19
|
"generate:json-schema:stage-0": "json-schema-generator --outDir=./json-schema/v1/ --stage=0 ./src/schema/nodes/doc.ts",
|
38
20
|
"generate:json-schema:full": "json-schema-generator --outDir=./json-schema/v1/ ./src/schema/nodes/doc.ts",
|
39
21
|
"ak-postbuild": "yarn build:json-schema",
|
22
|
+
"test": "yarn test:unit",
|
40
23
|
"test:unit": "yarn jest",
|
41
24
|
"build:cjs": "NODE_ENV=production BABEL_ENV=production:node-cjs babel --config-file ./babel.config.js src --out-dir dist/cjs -x .ts,.tsx",
|
42
25
|
"build:esm": "NODE_ENV=production BABEL_ENV=production:esm babel --config-file ./babel.config.js src -d dist/esm -x .ts,.tsx",
|
@@ -50,7 +33,7 @@
|
|
50
33
|
"dependencies": {
|
51
34
|
"@atlaskit/codemod-utils": "^4.2.0",
|
52
35
|
"@atlaskit/editor-palette": "1.5.1",
|
53
|
-
"@atlaskit/editor-prosemirror": "
|
36
|
+
"@atlaskit/editor-prosemirror": "*",
|
54
37
|
"@atlaskit/editor-tables": "^2.3.0",
|
55
38
|
"@atlaskit/json-schema-generator": "3.3.5",
|
56
39
|
"@babel/runtime": "^7.0.0",
|