asciidoctor 3.0.0-rc.2 → 3.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.
Files changed (2) hide show
  1. package/package.json +7 -3
  2. package/types/index.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asciidoctor",
3
- "version": "3.0.0-rc.2",
3
+ "version": "3.0.1",
4
4
  "description": "A JavaScript AsciiDoc processor, cross-compiled from the Ruby-based AsciiDoc implementation, Asciidoctor, using Opal",
5
5
  "main": "index.js",
6
6
  "types": "types",
@@ -45,8 +45,12 @@
45
45
  },
46
46
  "homepage": "https://github.com/asciidoctor/asciidoctor.js",
47
47
  "dependencies": {
48
- "@asciidoctor/cli": "3.5.0",
49
- "@asciidoctor/core": "3.0.0-rc.2"
48
+ "@asciidoctor/cli": "4.0.0",
49
+ "@asciidoctor/core": "3.0.1",
50
+ "ejs": "^3.1.2",
51
+ "handlebars": "^4.7.6",
52
+ "nunjucks": "^3.2.1",
53
+ "pug": "^2.0.4"
50
54
  },
51
55
  "devDependencies": {
52
56
  "pkg": "5.8.1"
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 style for this block
2082
+ * @returns the location in the AsciiDoc source where this block begins
2083
2083
  */
2084
2084
  getSourceLocation(): Cursor;
2085
2085