Skip to content

Commit

Permalink
Merge b515cf0 into 08df34b
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo-ter-Doest committed Apr 8, 2024
2 parents 08df34b + b515cf0 commit 77ac6e8
Show file tree
Hide file tree
Showing 5 changed files with 281 additions and 13 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,9 @@ jobs:
- name: Clean install
run: npm ci

- name: Run Nodejs tests
run: npm run test

- name: Build
run: npm run build

- name: Run Typescript tests
run: npm run test_ts

- name: Run IO tests
run: npm run test_io

- name: Run Istanbul coverage
run: npm run coverage

Expand Down
2 changes: 1 addition & 1 deletion lib/natural/analyzers/SenType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

export enum SenType {
export const enum SenType {
Unknown = 'UNKNOWN',
Command = 'COMMAND',
Interrogative = 'INTERROGATIVE',
Expand Down
2 changes: 1 addition & 1 deletion lib/natural/analyzers/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

import type { SenType } from './SenType.js'
import type { SenType } from './SenType'

declare interface TaggedWord {
token: string
Expand Down

0 comments on commit 77ac6e8

Please sign in to comment.