10000 dev: add package cspell-dynamic-loader (#1615) · streetsidesoftware/cspell@76c1df9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 76c1df9

Browse files
authored
dev: add package cspell-dynamic-loader (#1615)
1 parent 54ed2d8 commit 76c1df9

File tree

14 files changed

+4001
-42
lines changed

14 files changed

+4001
-42
lines changed

cspell.code-workspace

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,13 @@
3535
"path": "packages/cspell-bundled-dicts"
3636
},
3737
{
38-
"path": "docs"
38+
"path": "packages/hunspell-reader"
3939
},
4040
{
41-
"path": "packages/hunspell-reader"
41+
"path": "packages/cspell-dynamic-loader"
42+
},
43+
{
44+
"path": "docs"
4245
}
4346
],
4447
"launch": {

package-lock.json

Lines changed: 40 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
< 10000 td data-grid-cell-id="diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519-65-66-2" data-line-anchor="diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R66" data-selected="false" role="gridcell" style="background-color:var(--bgColor-default);padding-right:24px" tabindex="-1" valign="top" class="focusable-grid-cell diff-text-cell right-side-diff-cell left-side">
"ajv-cli": "^5.0.0",
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"homepage": "https://streetsidesoftware.github.io/cspell/",
6161
"devDependencies": {
6262
"@types/jest": "^27.0.1",
63+
"@types/node": "^16.7.7",
6364
"@typescript-eslint/eslint-plugin": "^4.7.0",
6465
"@typescript-eslint/parser": "^4.7.0",
6566
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Jason Dent
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# CSpell Library Loader
2+
3+
This library is used for dynamically loading `cspell` or `cspell-lib` from `node_modules`.
4+
5+
## Support Future Development
6+
7+
- Become a [<img src="https://github.githubassets.com/images/modules/site/icons/funding_platforms/patreon.svg" width="16" height="16" alt="Patreon">Patreon!](https://patreon.com/streetsidesoftware)
8+
9+
## cspell for enterprise
10+
11+
Available as part of the Tidelift Subscription.
12+
13+
The maintainers of cspell and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-cspell?utm_sour 7057 ce=npm-cspell&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
14+
15+
## Installation
16+
17+
```
18+
npm i -SD @cspell/cspell-dynamic-loader
19+
```
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('../../jest.config');

0 commit comments

Comments
 (0)
0