Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zeroing-pack
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
劳工
zeroing-pack
Commits
dba9196f
Commit
dba9196f
authored
Nov 23, 2019
by
rockyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复没有序列化custom的问题
parent
cd25a6b9
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
index.es.js
dist/index.es.js
+1
-1
index.es.js.map
dist/index.es.js.map
+1
-1
index.js
dist/index.js
+1
-1
index.js.map
dist/index.js.map
+1
-1
index.umd.js
dist/index.umd.js
+1
-1
index.umd.js.map
dist/index.umd.js.map
+1
-1
index.js
src/index.js
+1
-1
No files found.
dist/index.es.js
View file @
dba9196f
...
...
@@ -75,7 +75,7 @@ async function packData(data, {getProcesses, getScripts, getCustoms}) {
newData
.
customs
=
[];
if
(
data
.
customs
&&
data
.
customs
.
length
>
0
)
{
newData
.
customs
=
await
getCustoms
(
data
.
customs
).
map
(
item
=>
{
newData
.
customs
=
(
await
getCustoms
(
data
.
customs
)
).
map
(
item
=>
{
return
JSON
.
parse
(
item
);
});
}
...
...
dist/index.es.js.map
View file @
dba9196f
This diff is collapsed.
Click to expand it.
dist/index.js
View file @
dba9196f
...
...
@@ -79,7 +79,7 @@ async function packData(data, {getProcesses, getScripts, getCustoms}) {
newData
.
customs
=
[];
if
(
data
.
customs
&&
data
.
customs
.
length
>
0
)
{
newData
.
customs
=
await
getCustoms
(
data
.
customs
).
map
(
item
=>
{
newData
.
customs
=
(
await
getCustoms
(
data
.
customs
)
).
map
(
item
=>
{
return
JSON
.
parse
(
item
);
});
}
...
...
dist/index.js.map
View file @
dba9196f
This diff is collapsed.
Click to expand it.
dist/index.umd.js
View file @
dba9196f
...
...
@@ -81,7 +81,7 @@
newData
.
customs
=
[];
if
(
data
.
customs
&&
data
.
customs
.
length
>
0
)
{
newData
.
customs
=
await
getCustoms
(
data
.
customs
).
map
(
item
=>
{
newData
.
customs
=
(
await
getCustoms
(
data
.
customs
)
).
map
(
item
=>
{
return
JSON
.
parse
(
item
);
});
}
...
...
dist/index.umd.js.map
View file @
dba9196f
This diff is collapsed.
Click to expand it.
src/index.js
View file @
dba9196f
...
...
@@ -75,7 +75,7 @@ async function packData(data, {getProcesses, getScripts, getCustoms}) {
newData
.
customs
=
[];
if
(
data
.
customs
&&
data
.
customs
.
length
>
0
)
{
newData
.
customs
=
await
getCustoms
(
data
.
customs
).
map
(
item
=>
{
newData
.
customs
=
(
await
getCustoms
(
data
.
customs
)
).
map
(
item
=>
{
return
JSON
.
parse
(
item
);
})
}
...
...
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