fix for paths in release

This commit is contained in:
Mayel 2021-10-06 23:20:11 +13:00
parent 357c77db4f
commit ff7708e5e9
4 changed files with 5 additions and 4 deletions

View file

@ -52,6 +52,7 @@ pre-config: pre-init ## Initialise env files, and create some required folders,
pre-init:
@ln -sfn $(FLAVOUR_PATH)/config ./config
@ln -sfr $(FLAVOUR_PATH) ./data/current_flavour
@mkdir -p config/prod
@mkdir -p config/dev
@touch config/deps.path

View file

@ -35,7 +35,7 @@ liveSocket.connect()
window.liveSocket = liveSocket
import { ExtensionHooks } from "../../config/hooks.js"
import { ExtensionHooks } from "../../data/current_flavour/config/hooks.js"
// Add Extensions' Hooks...
Object.assign(liveSocket.hooks, ExtensionHooks);

View file

@ -2,8 +2,8 @@ let ExtensionHooks = {};
// TODO: make this more configurable? ie. don't import disabled extensions
import { GeolocateHooks } from "../../../deps/bonfire_geolocate/assets/js/extension"
import { KanbanHooks } from "../../../deps/bonfire_ui_kanban/assets/js/extension"
import { GeolocateHooks } from "./../../../deps/bonfire_geolocate/assets/js/extension"
import { KanbanHooks } from "./../../../deps/bonfire_ui_kanban/assets/js/extension"
Object.assign(ExtensionHooks, GeolocateHooks, KanbanHooks)

View file

@ -3,7 +3,7 @@ defmodule Bonfire.MixProject do
use Mix.Project
@config [
version: "0.1.0-beta.5", # note that the flavour will automatically be added where the dash appears
version: "0.1.0-beta.6", # note that the flavour will automatically be added where the dash appears
elixir: "~> 1.12",
default_flavour: "classic",
test_deps_prefixes: ["bonfire_", "pointers", "paginator"],