dev-dict 0.5.0 → 0.6.0
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 +15 -3
- package/dist/dev-dict.min.js.map +1 -1
- package/dist/index.d.ts +10 -10
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -3,10 +3,16 @@
|
|
|
3
3
|
> A multilingual dictionary of software development terms
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/dev-dict)
|
|
6
|
+
[](https://www.npmjs.com/package/dev-dict)
|
|
7
|
+
[](https://bundlephobia.com/package/dev-dict)
|
|
6
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
|
+
[](https://www.typescriptlang.org/)
|
|
10
|
+
[](./CONTRIBUTING.md)
|
|
7
11
|
|
|
8
12
|
**dev-dict** provides an exhaustive, community-driven collection of software industry terms with clear explanations in multiple languages. Perfect for developers, technical writers, educators, and anyone building multilingual developer tools.
|
|
9
13
|
|
|
14
|
+
**[🚀 View Live Demo](https://kyco.github.io/dev-dict/)**
|
|
15
|
+
|
|
10
16
|
|
|
11
17
|
## Features
|
|
12
18
|
|
|
@@ -175,12 +181,18 @@ Please read our [Contributing Guide](./CONTRIBUTING.md) to get started.
|
|
|
175
181
|
# Install dependencies
|
|
176
182
|
pnpm install
|
|
177
183
|
|
|
178
|
-
# Start dev server (serves examples/)
|
|
179
|
-
pnpm dev
|
|
180
|
-
|
|
181
184
|
# Build library
|
|
182
185
|
pnpm build
|
|
183
186
|
|
|
187
|
+
# Run demo site locally
|
|
188
|
+
pnpm demo:dev
|
|
189
|
+
|
|
190
|
+
# Build demo site
|
|
191
|
+
pnpm demo:build
|
|
192
|
+
|
|
193
|
+
# Preview demo build
|
|
194
|
+
pnpm demo:preview
|
|
195
|
+
|
|
184
196
|
# Lint code
|
|
185
197
|
npx eslint .
|
|
186
198
|
|