lang/{web,javascript}: remove +web-bower-mode; refactor react, phaser & angular detection

This commit is contained in:
Henrik Lissner 2017-04-01 23:54:30 -04:00
parent dd8c3d0d1e
commit 53b9e92fd7
4 changed files with 19 additions and 46 deletions

View file

@ -1,15 +1,2 @@
;;; lang/web/autoload/web.el
(defvar +web-bower-conf (make-hash-table :test 'equal))
;;;###autoload
(defun +web-bower-conf (&optional project-root refresh-p)
"Retrieves an alist of this project's 'bower.json'. If REFRESH-P is non-nil
ignore the cache."
(let ((project-root (or project-root (doom-project-root))))
(or (and (not refresh-p)
(gethash project-root +web-bower-conf))
(let ((package-file (expand-file-name "bower.json" project-root)))
(when-let (json (and (file-exists-p package-file)
(json-read-file package-file)))
(puthash project-root json +web-bower-conf))))))