Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
mycard
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
syntax_j
mycard
Commits
8400d19e
Commit
8400d19e
authored
Feb 01, 2016
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
39bc850e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
5 deletions
+15
-5
Gruntfile.js
Gruntfile.js
+15
-5
No files found.
Gruntfile.js
View file @
8400d19e
...
...
@@ -10,12 +10,12 @@ module.exports = (grunt) => {
break
;
case
'
win32
'
:
grunt
.
loadNpmTasks
(
'
grunt-electron-installer
'
);
release_task
=
[
'
electron:win32
'
,
'
c
opy:bundle
'
,
'
create-windows-installer
'
];
release_task
=
[
'
electron:win32
'
,
'
c
reate-windows-installer:ia32
'
,
'
create-windows-installer:x64
'
,
'
copy:bundle-ia32
'
,
'
copy:bundle-x64
'
,
'
create-windows-installer:bundle-ia32
'
,
'
create-windows-installer:bundle-x64
'
];
break
;
}
grunt
.
initConfig
({
clean
:
[
"
build2
"
,
"
build3
"
,
"
build3-bundle
"
,
"
build4-bundle
"
],
clean
:
[
"
build2
"
,
"
build3
"
],
copy
:
{
app
:
{
expand
:
true
,
...
...
@@ -34,13 +34,23 @@ module.exports = (grunt) => {
src
:
[
'
node_modules/**
'
,
'
bin/**
'
],
dest
:
'
build2
'
},
bundle
:
{
'
bundle-ia32
'
:
{
expand
:
true
,
options
:
{
timestamp
:
true
},
cwd
:
'
bundle
'
,
src
:
'
**
'
,
dest
:
'
build3/mycard-win32-ia32
'
},
'
bundle-x64
'
:
{
expand
:
true
,
options
:
{
timestamp
:
true
},
src
:
[
'
build3/**
'
,
'
bundle/**
'
],
dest
:
'
build3-bundle
'
cwd
:
'
bundle
'
,
src
:
'
**
'
,
dest
:
'
build3/mycard-win32-x64
'
}
},
...
...
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