Skip to content

Commit 56e2ef2

Browse files
authored
Fix issues #247 & #249 (#251)
Fix issues #247 & #249 (#251)
1 parent 40011d1 commit 56e2ef2

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,13 @@ jobs:
3939
- name: Build
4040
run: |
4141
python pack.py
42-
42+
43+
- name: Upload package-lock.json
44+
uses: actions/upload-artifact@v2
45+
with:
46+
name: localFile
47+
path: package-lock.json
48+
4349
# Keep this in case we switch to Linux OS someday
4450
# - name: Run tests on Linux OS
4551
# run: xvfb-run -a npm test

extension/data/alllispkeys.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ command
1717
cond
1818
defun
1919
foreach
20-
vlax-for
2120
if
2221
lambda
2322
or
@@ -276,9 +275,6 @@ pi
276275
:constants-prefix
277276
:prog-id
278277
:tlb-filename
279-
:vlax-true
280-
:vlax-false
281-
:vlax-null
282278
acrx_cmd_modal
283279
acrx_cmd_transparent
284280
acrx_cmd_usepickset
@@ -358,8 +354,6 @@ vl-catch-all-apply
358354
vl-catch-all-error-p
359355
vl-catch-all-error-message
360356
_vl-balance-parenthesis
361-
vlax-add-cmd
362-
vlax-remove-cmd
363357
vla-activate
364358
vla-add
365359
vla-add3dface

pack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
def init():
1313
print("===============================================")
1414
print(" try to install gulp-cli")
15-
os.system("npm install gulp-cli") # nosec
15+
os.system("npm install gulp-cli --legacy-peer-deps") # nosec
1616

17-
os.system("npm install --unsafe-perm") # nosec
17+
os.system("npm install --unsafe-perm --legacy-peer-deps") # nosec
1818

1919
print("===============================================")
2020
print(" complete npm install")

package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "autolispext",
33
"displayName": "AutoCAD AutoLISP Extension",
44
"description": "This is a vscode extension for AutoCAD AutoLISP",
5-
"version": "1.6.2",
5+
"version": "1.6.3",
66
"license": "SEE LICENSE IN LICENSE.md",
77
"bugs": {
88
"url": "https://github.com/Autodesk-AutoCAD/AutoLispExt/issues"
@@ -236,9 +236,10 @@
236236
"2021",
237237
"2022",
238238
"2023",
239-
"2024"
239+
"2024",
240+
"2025"
240241
],
241-
"default": "2024",
242+
"default": "2025",
242243
"description": "%autolispext.configuration.helptargetyear%"
243244
}
244245
}
@@ -666,9 +667,5 @@
666667
"vscode-languageclient": "4.2.0",
667668
"vscode-nls": "3.2.5",
668669
"vscode-ripgrep": "1.5.8"
669-
},
670-
"resolutions": {
671-
"yargs-parser": "^18.1.3",
672-
"glob-parent": "^6.0.1"
673670
}
674671
}

0 commit comments

Comments
 (0)