Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
d7992a5e
Commit
d7992a5e
authored
Jun 11, 2017
by
NGPixel
Committed by
Nicolas Giard
Jul 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: fusebox bundle rebuild bug
parent
4adf994c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
fuse.js
fuse.js
+3
-1
login.pug
server/views/auth/login.pug
+1
-1
layout.pug
server/views/layout.pug
+1
-1
No files found.
fuse.js
View file @
d7992a5e
...
@@ -83,6 +83,7 @@ globalTasks.then(() => {
...
@@ -83,6 +83,7 @@ globalTasks.then(() => {
homeDir
:
'./client'
,
homeDir
:
'./client'
,
output
:
'./assets/js/$name.min.js'
,
output
:
'./assets/js/$name.min.js'
,
alias
:
ALIASES
,
alias
:
ALIASES
,
shim
:
SHIMS
,
plugins
:
[
plugins
:
[
fsbx
.
EnvPlugin
({
NODE_ENV
:
(
dev
)
?
'development'
:
'production'
}),
fsbx
.
EnvPlugin
({
NODE_ENV
:
(
dev
)
?
'development'
:
'production'
}),
fsbx
.
VuePlugin
(),
fsbx
.
VuePlugin
(),
...
@@ -105,7 +106,8 @@ globalTasks.then(() => {
...
@@ -105,7 +106,8 @@ globalTasks.then(() => {
})
})
}
}
const
bundleApp
=
fuse
.
bundle
(
'app'
).
shim
(
SHIMS
).
instructions
(
'> index.js'
)
const
bundleVendor
=
fuse
.
bundle
(
'vendor'
).
instructions
(
'~ index.js'
)
const
bundleApp
=
fuse
.
bundle
(
'app'
).
instructions
(
'!> [index.js]'
)
const
bundleSetup
=
fuse
.
bundle
(
'configure'
).
instructions
(
'> configure.js'
)
const
bundleSetup
=
fuse
.
bundle
(
'configure'
).
instructions
(
'> configure.js'
)
switch
(
mode
)
{
switch
(
mode
)
{
...
...
server/views/auth/login.pug
View file @
d7992a5e
...
@@ -18,7 +18,7 @@ html(data-logic='login')
...
@@ -18,7 +18,7 @@ html(data-logic='login')
link(rel='manifest', href='/manifest.json')
link(rel='manifest', href='/manifest.json')
// JS / CSS
// JS / CSS
//- script(type='text/javascript', src='/js/libs
.min.js')
script(type='text/javascript', src='/js/vendor
.min.js')
script(type='text/javascript', src='/js/app.min.js')
script(type='text/javascript', src='/js/app.min.js')
body
body
...
...
server/views/layout.pug
View file @
d7992a5e
...
@@ -23,7 +23,7 @@ html
...
@@ -23,7 +23,7 @@ html
var siteRoot = '!{appconfig.host}';
var siteRoot = '!{appconfig.host}';
//- JS / CSS
//- JS / CSS
//- script(type='text/javascript', src='/js/libs
.min.js')
script(type='text/javascript', src='/js/vendor
.min.js')
script(type='text/javascript', src='/js/app.min.js')
script(type='text/javascript', src='/js/app.min.js')
block head
block head
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment