Skip to content

Commit efbc94d

Browse files
authored
Merge pull request #8 from openscad/fix/npm-lint-issues
fix(ci): add missing linter dependency
2 parents 09ed147 + 6525781 commit efbc94d

4 files changed

Lines changed: 1215 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ on:
44
push:
55
branches: [main]
66
paths:
7+
- package.json
78
- grammar.js
89
- src/**
910
- test/**
1011
- bindings/**
1112
- binding.gyp
1213
pull_request:
1314
paths:
15+
- package.json
1416
- grammar.js
1517
- src/**
1618
- test/**

grammar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function binary_operator(operator, rule) {
103103

104104

105105
const EXPONENT = /[eE][+-]?\d+/;
106-
module.exports = grammar({
106+
export default grammar({
107107
name: 'openscad',
108108

109109
extras: $ => [

0 commit comments

Comments
 (0)