Skip to content

Commit

Permalink
feat!: Upgrade Italian Dictionary to v2 (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Aug 12, 2022
1 parent 27b2a64 commit 2fca1c5
Show file tree
Hide file tree
Showing 11 changed files with 765 additions and 320 deletions.
2 changes: 1 addition & 1 deletion extensions/italian/.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/italian/.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/italian/.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/italian/LICENSE

Large diffs are not rendered by default.

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

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

12 changes: 6 additions & 6 deletions extensions/italian/package.json
Expand Up @@ -7,6 +7,7 @@
"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_italian.enableItalian",
"command": "cSpellExt_italian.enable",
"title": "Enable Italian Spell Checker Dictionary"
},
{
"command": "cSpellExt_italian.disableItalian",
"command": "cSpellExt_italian.disable",
"title": "Disable Italian Spell Checker Dictionary"
},
{
"command": "cSpellExt_italian.enableItalianWorkspace",
"command": "cSpellExt_italian.enableWorkspace",
"title": "Enable Italian Spell Checker Dictionary in Workspace"
},
{
"command": "cSpellExt_italian.disableItalianWorkspace",
"command": "cSpellExt_italian.disableWorkspace",
"title": "Disable Italian 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-it-it": "^1.1.2"
"@cspell/dict-it-it": "^2.0.0"
}
}
3 changes: 3 additions & 0 deletions extensions/italian/samples/cspell.json
@@ -0,0 +1,3 @@
{
"language": "it"
}

0 comments on commit 2fca1c5

Please sign in to comment.