Fix installation of typescript-mode via prelude-ts (#1398)

This commit is contained in:
Liam 2023-02-21 04:55:04 -05:00 committed by GitHub
parent 98331c14c5
commit 4f880f1e67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -30,6 +30,7 @@
* Fix **Edit on GitHub** link in ReadTheDocs site.
* Fix fall back to sample `prelude-modules.el` not working if user has installed to non-default location.
* Stop requiring `helm-config` since upstream has removed the module.
* Require `typescript-mode` using `prelude-require-packages` to avoid error upon inclusion in `personal/prelude-modules.el`
## 1.1.0 (2021-02-14)

View file

@ -30,9 +30,7 @@
;;; Code:
(require 'prelude-programming)
(prelude-require-packages '(tide))
(require 'typescript-mode)
(prelude-require-packages '(tide typescript-mode))
(add-to-list 'auto-mode-alist '("\\.ts\\'" . typescript-mode))