File tree Expand file tree Collapse file tree 7 files changed +1216
-384
lines changed Expand file tree Collapse file tree 7 files changed +1216
-384
lines changed Original file line number Diff line number Diff line change 1+ on :
2+ push : # Runs whenever a commit is pushed to the repository...
3+ concurrency :
4+ group : ' ${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
5+ cancel-in-progress : true
6+
7+ permissions :
8+ contents : write
9+ jobs :
10+ build-deploy :
11+ runs-on : ubuntu-latest
12+ env :
13+ JVM_OPTS : -Xmx3200m
14+ JDK_JAVA_OPTIONS : --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.time=ALL-UNNAMED --add-exports java.base/sun.nio.ch=ALL-UNNAMED
15+ steps :
16+ - uses : actions/checkout@v4
17+ - uses : wagoid/commitlint-github-action@v5
18+ - name : Setup Java
19+ uses : actions/setup-java@v2
20+ with :
21+ distribution : ' temurin'
22+ java-version : 17
23+ - name : Setup submodule
24+ run : git submodule update --init --recursive
25+ - uses : actions/setup-node@v2
26+ with :
27+ cache : " npm"
28+ node-version-file : " .nvmrc"
29+ - name : Info
30+ run : |
31+ cat <<EOF
32+ Node version: $(node --version)
33+ NPM version: $(npm --version)
34+ GitHub ref: ${{ github.ref }}
35+ GitHub head ref: ${{ github.head_ref }}
36+ EOF
37+ - name : Setup
38+ run : |
39+ # sudo apt update
40+ # sudo apt install libgif-dev
41+ TRAVIS_BRANCH="${{github.ref_name}}" travis/setup-git.sh # Configure git user info
42+ travis/install-assets.sh
43+ npm set progress=false
44+ which gulp || npm install -g gulp-cli
45+ - name : Install NPM Dependencies
46+ run : |
47+ npm ci --legacy-peer-deps
48+ - run : gulp jshint
49+ - run : gulp minify
50+ - run : gulp test
51+ - run : gulp zip
52+ - name : Tag build
53+ run : |
54+ TRAVIS_TAG="${{github.ref_name}}" TRAVIS_COMMIT="${{github.sha}}" travis/deploy-prebuilt.sh
55+
Original file line number Diff line number Diff line change 11node_modules /
22dist /*
3+
4+
5+ gulp /typescript /typescript-definition-test.js
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
33 "target" : " ES5" ,
4- "strictNullChecks" : true
4+ "strictNullChecks" : false
55 },
66 "files" : [
77 " typescript-definition-test.ts"
8- ]
8+ ],
9+ "exclude" : [
10+ " node_modules" ]
911}
Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ item.hitTestAll(point);
389389item . hitTestAll ( point , { } ) ;
390390item . matches ( { } ) ;
391391item . matches ( callback ) ;
392- item . matches ( name , { } ) ;
392+ item . matches ( item . name , { } ) ;
393393item . getItems ( { } ) ;
394394item . getItems ( callback ) ;
395395item . getItem ( { } ) ;
You can’t perform that action at this time.
0 commit comments