Skip to content

Commit

Permalink
feat!: Update the Polish Dictionary to v2 (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Aug 12, 2022
1 parent 72a0d52 commit 16ebb57
Show file tree
Hide file tree
Showing 12 changed files with 768 additions and 359 deletions.
2 changes: 1 addition & 1 deletion extensions/polish/.vscode/launch.json
Expand Up @@ -7,7 +7,7 @@
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "${workspaceRoot}/samples"],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
Expand Down
11 changes: 5 additions & 6 deletions extensions/polish/.vscode/tasks.json
Expand Up @@ -4,8 +4,7 @@
"version": "2.0.0",
"tasks": [
{
"identifier": "build",
"label": "build",
"label": "npm: build",
"type": "npm",
"script": "build",
"group": {
Expand All @@ -15,13 +14,13 @@
"problemMatcher": "$tsc"
},
{
"identifier": "clean-build",
"label": "npm: clean-build",
"type": "npm",
"script": "build",
"script": "clean-build",
"problemMatcher": "$tsc"
},
{
"identifier": "test",
"label": "npm: test",
"type": "npm",
"script": "test",
"group": {
Expand All @@ -30,7 +29,7 @@
}
},
{
"identifier": "watch",
"label": "npm: watch",
"type": "npm",
"script": "watch",
"problemMatcher": ["$tsc-watch"]
Expand Down
11 changes: 7 additions & 4 deletions extensions/polish/.vscodeignore
@@ -1,9 +1,12 @@
.vscode/**
.gitignore
.vscode-test/**
.vscode/**
**/*.d.ts
**/*.map
**/*.test.*
out/test/**
test/**
samples/**
src/**
**/*.map
.gitignore
test/**
tsconfig.json
vsc-extension-quickstart.md
712 changes: 691 additions & 21 deletions extensions/polish/LICENSE

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions extensions/polish/cspell-ext.json
@@ -0,0 +1,3 @@
{
"import": ["@cspell/dict-pl_pl/cspell-ext.json"]
}
256 changes: 6 additions & 250 deletions extensions/polish/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions extensions/polish/package.json
Expand Up @@ -4,9 +4,10 @@
"version": "1.0.13",
"displayName": "Polish - Code Spell Checker",
"icon": "images/SpellCheck.png",
"private": true,
"preview": false,
"private": true,
"publisher": "streetsidesoftware",
"license": "GPL-3.0-or-later",
"engines": {
"vscode": "^1.67.0"
},
Expand Down Expand Up @@ -35,19 +36,19 @@
"contributes": {
"commands": [
{
"command": "cSpellExt_polish.enablePolish",
"command": "cSpellExt_polish.enable",
"title": "Enable Polish Spell Checker Dictionary"
},
{
"command": "cSpellExt_polish.disablePolish",
"command": "cSpellExt_polish.disable",
"title": "Disable Polish Spell Checker Dictionary"
},
{
"command": "cSpellExt_polish.enablePolishWorkspace",
"command": "cSpellExt_polish.enableWorkspace",
"title": "Enable Polish Spell Checker Dictionary in Workspace"
},
{
"command": "cSpellExt_polish.disablePolishWorkspace",
"command": "cSpellExt_polish.disableWorkspace",
"title": "Disable Polish Spell Checker Dictionary in Workspace"
}
]
Expand All @@ -62,7 +63,6 @@
"bugs": {
"url": "https://github.com/streetsidesoftware/vscode-cspell-dict-extensions/issues"
},
"license": "MIT",
"scripts": {
"clean": "rimraf out",
"clean-build": "npm run clean && npm run build",
Expand All @@ -74,6 +74,6 @@
"test": "node ../../node_modules/vscode/bin/test"
},
"dependencies": {
"cspell-dict-pl_pl": "^1.1.1"
"@cspell/dict-pl_pl": "^2.0.0"
}
}
3 changes: 3 additions & 0 deletions extensions/polish/samples/cspell.json
@@ -0,0 +1,3 @@
{
"language": "pl"
}

0 comments on commit 16ebb57

Please sign in to comment.