@patternfly/patternfly-doc-core 1.0.8 → 1.0.9
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/README.md +1 -1
- package/cli/cli.ts +1 -1
- package/dist/cli/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Patternfly documentation core contains the base packages needed to build and rel
|
|
|
8
8
|
|
|
9
9
|
Using this package for your documentation is accomplished in just a few simple steps:
|
|
10
10
|
|
|
11
|
-
1. Run `npx patternfly-doc-core@latest setup` from the root of your repo. This will:
|
|
11
|
+
1. Run `npx @patternfly/patternfly-doc-core@latest setup` from the root of your repo. This will:
|
|
12
12
|
- add the documentation core as a dependency in your package
|
|
13
13
|
- add the relevant scripts for using the documentation core to your package scripts
|
|
14
14
|
- create the configuration file for customizing the documentation core
|
package/cli/cli.ts
CHANGED
|
@@ -24,7 +24,7 @@ function updateContent(program: Command) {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
const astroRoot = import.meta
|
|
27
|
-
.resolve('patternfly-doc-core')
|
|
27
|
+
.resolve('@patternfly/patternfly-doc-core')
|
|
28
28
|
.replace('dist/cli/cli.js', '')
|
|
29
29
|
.replace('file://', '')
|
|
30
30
|
const currentDir = process.cwd()
|
package/dist/cli/cli.js
CHANGED
|
@@ -16,7 +16,7 @@ function updateContent(program) {
|
|
|
16
16
|
createCollectionContent(astroRoot, `${process.cwd()}/pf-docs.config.mjs`, verbose);
|
|
17
17
|
}
|
|
18
18
|
const astroRoot = import.meta
|
|
19
|
-
.resolve('patternfly-doc-core')
|
|
19
|
+
.resolve('@patternfly/patternfly-doc-core')
|
|
20
20
|
.replace('dist/cli/cli.js', '')
|
|
21
21
|
.replace('file://', '');
|
|
22
22
|
const currentDir = process.cwd();
|