chore: rename package from @hykocx/zen to @zen/core
Update all references across source files, documentation, and configuration to reflect the new package scope and name. This includes updating `.npmrc` registry config, install instructions, module examples, and all import path comments throughout the codebase.
This commit is contained in:
+3
-3
@@ -11,7 +11,7 @@ Créer un fichier `.npmrc` à la racine du projet avec le contenu suivant :
|
||||
## 2. Installer le package
|
||||
|
||||
```bash
|
||||
npm install @hykocx/zen
|
||||
npm install @zen/core
|
||||
```
|
||||
|
||||
## 3. Installer les styles
|
||||
@@ -19,7 +19,7 @@ npm install @hykocx/zen
|
||||
Ajouter la ligne suivante dans le fichier `globals.css` :
|
||||
|
||||
```css
|
||||
@import '@hykocx/zen/styles/zen.css';
|
||||
@import '@zen/core/styles/zen.css';
|
||||
```
|
||||
|
||||
## 4. Ajouter ZenProvider au layout racine
|
||||
@@ -29,7 +29,7 @@ Entourer l'application avec `ZenProvider` dans le layout racine pour activer les
|
||||
```javascript
|
||||
// app/layout.js
|
||||
import './globals.css';
|
||||
import { ZenProvider } from '@hykocx/zen/provider';
|
||||
import { ZenProvider } from '@zen/core/provider';
|
||||
|
||||
export const metadata = {
|
||||
title: 'My App',
|
||||
|
||||
Reference in New Issue
Block a user