Skip to content

Commit f8aafd6

Browse files
authored
remove mentions of the site folder in doc and config files (#1769)
1 parent f0422f4 commit f8aafd6

4 files changed

Lines changed: 8 additions & 10 deletions

File tree

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = {
3737
},
3838
parserOptions: {
3939
tsconfigRootDir: __dirname,
40-
project: ['./site/tsconfig.json', './packages/*/tsconfig.json'],
40+
project: ['./docs/tsconfig.json', './packages/*/tsconfig.json'],
4141
ecmaVersion: 'latest',
4242
sourceType: 'module',
4343
},

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ stats
44
node_modules
55
tests
66
scripts
7-
site
87
src
98
build
109
babel.config.js

CONTRIBUTING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,16 +144,19 @@ Root directories
144144

145145
```sh
146146
lucide
147-
|
148147
├── docs
148+
│ ├── guide
149149
├── icons
150150
├── packages
151-
├── scripts
152-
└── site
151+
└── scripts
153152
```
154153

155154
### Docs
156155

156+
The lucide.dev website is using [vitepress](https://vitepress.dev/) to generate the static website. The markdown files are located in the docs directory.
157+
158+
### Guides
159+
157160
Detailed documentation about: installation, guides, packages, design guides etc.
158161

159162
### Icons
@@ -170,10 +173,6 @@ Includes all the (npm) packages of lucide.
170173

171174
Includes usefully scripts to automate certain jobs. Big part of the scripts is the template generation, for example it generates icon components for all the packages. These scripts are usually executed from the "scripts" section in the package.json.
172175

173-
### site
174-
175-
The lucide.dev website is using [vitepress](https://vitepress.dev/) to generate the static website. The markdown files are located in the docs directory.
176-
177176
## Documentation
178177

179178
The documentation files are located in the [docs](https://github.com/lucide-icons/lucide/tree/main/docs) directory. All these markdown files will be loaded in the build of the lucide.dev website.

scripts/generateChangelog.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const cliArguments = getArgumentOptions(process.argv.slice(2));
4747
}
4848

4949
const changedFiles = output.files.filter(
50-
({ filename }) => !filename.match(/site\/(.*)|(.*)package\.json|tags.json/g),
50+
({ filename }) => !filename.match(/docs\/(.*)|(.*)package\.json|tags.json/g),
5151
);
5252

5353
const commits = await Promise.all(changedFiles.map(fetchCommits));

0 commit comments

Comments
 (0)