do not force reload core namespace with ^:figwheel-load annotation

- forcing reloading core namespace (using ^:figwheel-load annotation) is wrong. It causes evaluation of wrong js files for platform because both ios and android core.js files are reloaded.
This commit is contained in:
Artur Girenko 2016-01-30 18:12:21 +01:00
parent 143fdf06d5
commit 42a9256805
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
(ns ^:figwheel-load $PROJECT_NAME_HYPHENATED$.$PLATFORM$.core
(ns $PROJECT_NAME_HYPHENATED$.$PLATFORM$.core
(:require [reagent.core :as r :refer [atom]]
[re-frame.core :refer [subscribe dispatch dispatch-sync]]
[$PROJECT_NAME_HYPHENATED$.handlers]