@asciidoctor/core 3.0.0-rc.1 → 3.0.0
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/dist/browser/asciidoctor.js +165 -127
- package/dist/browser/asciidoctor.min.js +1341 -1339
- package/dist/css/asciidoctor.css +3 -6
- package/dist/graalvm/asciidoctor.js +164 -126
- package/dist/node/asciidoctor.cjs +173 -139
- package/dist/node/asciidoctor.js +164 -126
- package/package.json +19 -18
- package/types/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asciidoctor/core",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Asciidoctor - the core library",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"main": "dist/node/asciidoctor.js",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"require": "./dist/node/asciidoctor.cjs",
|
|
9
|
-
"import": "./dist/node/asciidoctor.js"
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
7
|
"browser": "dist/browser/asciidoctor.js",
|
|
13
8
|
"module": "dist/browser/asciidoctor.js",
|
|
14
|
-
"
|
|
9
|
+
"exports": {
|
|
10
|
+
"node": {
|
|
11
|
+
"import": "./dist/node/asciidoctor.js",
|
|
12
|
+
"require": "./dist/node/asciidoctor.cjs"
|
|
13
|
+
},
|
|
14
|
+
"default": "./dist/browser/asciidoctor.js"
|
|
15
|
+
},
|
|
15
16
|
"types": "types",
|
|
16
17
|
"engines": {
|
|
17
18
|
"node": ">=16",
|
|
@@ -75,17 +76,17 @@
|
|
|
75
76
|
},
|
|
76
77
|
"homepage": "https://github.com/asciidoctor/asciidoctor.js",
|
|
77
78
|
"dependencies": {
|
|
78
|
-
"@asciidoctor/opal-runtime": "3.0.
|
|
79
|
+
"@asciidoctor/opal-runtime": "3.0.1",
|
|
79
80
|
"unxhr": "1.2.0"
|
|
80
81
|
},
|
|
81
82
|
"devDependencies": {
|
|
82
|
-
"@rollup/plugin-commonjs": "24.0
|
|
83
|
+
"@rollup/plugin-commonjs": "24.1.0",
|
|
83
84
|
"@rollup/plugin-json": "6.0.0",
|
|
84
85
|
"@rollup/plugin-replace": "5.0.2",
|
|
85
|
-
"@types/node": "18.
|
|
86
|
+
"@types/node": "18.16.8",
|
|
86
87
|
"@types/nunjucks": "3.2.2",
|
|
87
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
88
|
-
"@typescript-eslint/parser": "5.
|
|
88
|
+
"@typescript-eslint/eslint-plugin": "5.59.5",
|
|
89
|
+
"@typescript-eslint/parser": "5.59.5",
|
|
89
90
|
"bestikk-download": "1.0.0",
|
|
90
91
|
"bestikk-fs": "1.0.0",
|
|
91
92
|
"bestikk-log": "0.1.0",
|
|
@@ -96,19 +97,19 @@
|
|
|
96
97
|
"documentation": "^14.0.0",
|
|
97
98
|
"dot": "1.1.3",
|
|
98
99
|
"ejs": "3.1.9",
|
|
99
|
-
"eslint": "8.
|
|
100
|
+
"eslint": "8.40.0",
|
|
100
101
|
"handlebars": "4.7.7",
|
|
101
102
|
"http-server": "14.1.1",
|
|
102
103
|
"mocha": "10.2.0",
|
|
103
104
|
"mock-http-server": "1.4.5",
|
|
104
105
|
"module-alias": "2.2.2",
|
|
105
|
-
"nunjucks": "3.2.
|
|
106
|
+
"nunjucks": "3.2.4",
|
|
106
107
|
"opal-compiler": "3.0.0",
|
|
107
108
|
"portfinder": "1.0.32",
|
|
108
109
|
"pug": "3.0.2",
|
|
109
|
-
"puppeteer": "19.
|
|
110
|
-
"rollup": "3.
|
|
111
|
-
"sinon": "15.0.
|
|
110
|
+
"puppeteer": "19.11.1",
|
|
111
|
+
"rollup": "3.21.6",
|
|
112
|
+
"sinon": "15.0.4",
|
|
112
113
|
"standard": "17.0.0",
|
|
113
114
|
"tsd": "0.28.1",
|
|
114
115
|
"typescript": "4.9.5"
|
package/types/index.d.ts
CHANGED
|
@@ -2079,7 +2079,7 @@ type ContentModel = 'compound' | 'simple' | 'verbatim' | 'raw' | 'empty'
|
|
|
2079
2079
|
|
|
2080
2080
|
/**
|
|
2081
2081
|
* Get the location in the AsciiDoc source where this block begins.
|
|
2082
|
-
* @returns the
|
|
2082
|
+
* @returns the location in the AsciiDoc source where this block begins
|
|
2083
2083
|
*/
|
|
2084
2084
|
getSourceLocation(): Cursor;
|
|
2085
2085
|
|