Skip to content

Commit 1d5b831

Browse files
committed
Bump ace-spell-check to v1.0.1 with updated modes support and package enhancements.
1 parent 3e44098 commit 1d5b831

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ace-spell-check/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ This pre-registers URLs for bundled dictionary assets. In this setup, `dictBaseU
139139
var services = [{
140140
name: "ace-spell-check",
141141
className: "AceSpellCheck",
142-
modes: "text",
142+
modes: "*", // * is used to work for all modes, if you want to restrict use specific mode -> like 'javascript'
143143
script: "build/ace-spell-check.js",
144144
// url to your cdn provider
145145
cdnUrl: "https://www.unpkg.com/ace-spell-check"

packages/ace-spell-check/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "ace-spell-check",
33
"author": "Azat Alimov <mkslanc@gmail.com>",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
5+
"main": "build/ace-spell-check.js",
56
"license": "MIT",
67
"repository": "https://github.com/mkslanc/ace-linters/tree/main/packages/ace-spell-check",
78
"scripts": {
@@ -21,7 +22,9 @@
2122
"peerDependencies": {
2223
"ace-linters": "^2.0.0"
2324
},
24-
"files": ["build"],
25+
"files": [
26+
"build"
27+
],
2528
"typesVersions": {
2629
"*": {
2730
"build/ace-spell-check": [

0 commit comments

Comments
 (0)