@atlaskit/adf-schema 28.1.5 → 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 +7 -0
- package/package.json +2 -19
package/CHANGELOG.md
CHANGED
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",
|