From 76caf4804eeab97aa621b360dac0da181b07a224 Mon Sep 17 00:00:00 2001 From: Daniel Lautzenheiser Date: Fri, 30 Sep 2022 08:32:04 -0400 Subject: [PATCH] Fix documentation after package release --- README.md | 6 +++++- tsconfig.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1c59f2a5..20380d4f 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,10 @@ The Simple CMS can be used in two different ways. # simple-cms-core +## Installation + +`npm install @simplecms/simple-cms/core` + ## Setup ```tsx @@ -70,7 +74,7 @@ import { locales, Icon, images -} from 'simple-cms-core'; +} from '@simple-cms/simple-cms-core'; // Register all the things CMS.registerBackend('git-gateway', GitGatewayBackend); diff --git a/tsconfig.json b/tsconfig.json index 5dc937ed..d20a7609 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,7 +16,7 @@ "noUnusedParameters": true, "baseUrl": "./", "paths": { - "simple-cms-core": ["./src"] + "@simplecms/simple-cms-core": ["./src"] } }, "include": ["**/src/**/*", "dev-test/index.js"],