diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/ROOT/pages/index.adoc index ab2fd55..373494a 100644 --- a/docs/modules/ROOT/pages/index.adoc +++ b/docs/modules/ROOT/pages/index.adoc @@ -11,11 +11,11 @@ A https://gulpjs.com[gulp] plugin to support https://asciidoctor-docs.netlify.ap === Installation with npm - npm i gulp-asciidoctor --save + npm i @asciidoctor/gulp-asciidoctor --save === Installation with yarn - yarn add gulp-asciidoctor + yarn add @asciidoctor/gulp-asciidoctor == Usage @@ -26,7 +26,7 @@ Here is a typical usage scenario: [source,javascript] ---- const gulp = require('gulp') -const asciidoctor = require('gulp-asciidoctor') +const asciidoctor = require('@asciidoctor/gulp-asciidoctor') function processAdocFiles (cb) { gulp.src('/path/to/my/files/**/*.adoc') @@ -133,7 +133,7 @@ The 'old' option 'header_footer' will be skipped in favor of the new option 'sta * If both 'header_footer' and 'standalone' are set, the option 'header_footer' will be stripped. == Changelog -- v2.2.4: Backend 'docbook5' is now supported +- v2.2.5: Backend 'docbook5' is now supported - V2.2.0: upgrade to asciidoctor 2.2.0 - V2.1.1: upgrade to asciidoctor 2.1.1, mocha 7.1.0 and replaced gulp-util with replace-ext and plugin-error - v1.5.5-4: upgrade asciidoctor.js to version 1.5.5-4 and use version consistent with asciidoctor.js. diff --git a/package.json b/package.json index e268277..b553b71 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@asciidoctor/gulp-asciidoctor", - "version": "2.2.4", + "version": "2.2.5", "description": "Gulp Asciidoctor plugin", "license": "MIT", "repository": "https://github.com/asciidoctor/gulp-asciidoctor",