Skip to content

Commit 9d4f4d3

Browse files
committed
More changes for prebuilt
1 parent dc3c4a5 commit 9d4f4d3

File tree

2 files changed

+32
-9
lines changed

2 files changed

+32
-9
lines changed

.gitignore

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1-
system-index.txt
1+
*.FASL
2+
*.d64fsl
3+
*.dfsl
4+
*.dx32fsl
5+
*.dx64fsl
6+
*.fasl
7+
*.fx32fsl
8+
*.fx64fsl
9+
*.lisp-temp
10+
*.log
11+
*.lx32fsl
12+
*.lx64fsl
13+
*.p64fsl
14+
*.pfsl
15+
*.sx32fsl
16+
*.sx64fsl
17+
*.tgz
18+
*.tgz
19+
*.wx32fsl
20+
*.wx64fsl
221
.ipynb_checkpoints
322
__pycache__
23+
dist
24+
js
25+
lib/
26+
node_modules
27+
package-lock.json
28+
system-index.txt
29+
tsconfig.tsbuildinfo
30+
yarn.lock

common-lisp-jupyter.asd

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
1-
(asdf:defsystem #:common-lisp-jupyter/lab-extension
2-
:components ((:module src
3-
:pathname "src/lab-extension/"
4-
:serial t
5-
:components ((:file "packages")
6-
(:file "asdf")))))
7-
81
(asdf:defsystem #:common-lisp-jupyter
92
:description "A Common Lisp kernel for Jupyter along with a library for building Jupyter kernels."
103
:author "Tarn W. Burton"
114
:license "MIT"
125
#+asdf3 :version #+asdf3 "1.0"
136
#+asdf3 :homepage #+asdf3 "https://yitzchak.github.io/common-lisp-jupyter/"
147
#+asdf3 :bug-tracker #+asdf3 "https://github.com/yitzchak/common-lisp-jupyter/issues"
8+
:defsystem-depends-on (#:jupyter-lab-extension)
159
:depends-on
1610
(#:alexandria
1711
#:babel
@@ -35,7 +29,9 @@
3529
#:trivial-features
3630
#:shasht)
3731
:components
38-
((:module res
32+
((:jupyter-lab-extension "debugger-restarts-clj"
33+
:pathname "debugger-restarts/prebuilt/")
34+
(:module res
3935
:components
4036
((:module ccl
4137
:components

0 commit comments

Comments
 (0)