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
fef8a31c
Commit
fef8a31c
authored
Feb 16, 2020
by
rockyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
库版本锁
parent
4034ca64
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
11 deletions
+11
-11
index.es.js
dist/index.es.js
+2
-2
index.es.js.map
dist/index.es.js.map
+1
-1
index.js
dist/index.js
+2
-2
index.js.map
dist/index.js.map
+1
-1
index.umd.js
dist/index.umd.js
+2
-2
index.umd.js.map
dist/index.umd.js.map
+1
-1
index.js
src/index.js
+2
-2
No files found.
dist/index.es.js
View file @
fef8a31c
...
...
@@ -63,7 +63,7 @@ function fillTpl(data, params) {
return
newTpl
;
}
async
function
packData
(
data
,
{
debug
,
packedAssets
,
getP
rocesses
,
getScripts
,
getCustom
s
})
{
async
function
packData
(
data
,
{
debug
,
packedAssets
,
getP
ackage
s
})
{
let
newData
=
{};
newData
.
options
=
data
.
options
;
newData
.
views
=
data
.
views
;
...
...
@@ -84,7 +84,7 @@ async function packData(data, {debug, packedAssets, getProcesses, getScripts, ge
}
=
await
divideCode
(
newData
,
{
debug
,
uglify
,
compile
,
getP
rocesses
,
getScripts
,
getCustom
s
,
getP
ackage
s
,
});
return
{
...
...
dist/index.es.js.map
View file @
fef8a31c
{
"version"
:
3
,
"file"
:
"index.es.js"
,
"sources"
:
[
"../src/code-process.js"
,
"../src/index.js"
],
"sourcesContent"
:
[
"/**
\n
* Created by rockyl on 2019-11-30.
\n
*/
\n\n
import babel from '@babel/core';
\n\n
const UglifyJS = require('uglify-js');
\n\n
export async function compile(source, debug = false) {\n
\t
const {code, map} = await babel.transformAsync(source, {\n
\t\t
presets: [
\n\t\t\t
['@babel/env', {}]
\n\t\t
],
\n\t\t
babelrc: false,
\n\t\t
sourceMaps: debug,
\n\t
});
\n\n\t
const result =
{
\n\t\tcode,\n\t
}
;
\n\t
if (map) {\n
\t\t
result.sourcemap = map.mappings;
\n\t
}
\n\t
return result;
\n
}
\n\n
export function uglify(source){\n
\t
const uglifyResult = UglifyJS.minify(source,
{
\n\t
}
);
\n\t
if (!uglifyResult.error) {\n
\t\t
return uglifyResult.code;
\n\t
}
\n
}"
,
"/**
\n
* Created by rockyl on 2019-11-13.
\n
*
\n
* 项目打包
\n
*/
\n\n
import decamelize from 'decamelize'
\n
import {uglify, compile} from
\"
./code-process
\"
;
\n
import
{
divideCode
}
from 'zeroing-code-divider';
\n\n
const replaceFields = ['pageTitle', 'containerId'];
\n
const TAG = 'zeroing-pack';
\n\n
export async function pack(data, options) {\n
\t
let version = Date.now() + Math.floor(Math.random() * 1000);
\n\t
pageTemplate(data, data.options, version);
\n\t
const newData = await packData(data, options);
\n\n\t
return {\n
\t\t
version,
\n\t\t
data: newData,
\n\t
}
\n
}
\n\n
export function fillTpl(data, params) {\n
\t
const
{
options
}
= data;
\n\t
fillTemplate(options.newTpl, options, params);
\n\n\t
const newTpl = options.newTpl;
\n\t
delete options.newTpl;
\n\t
return newTpl;
\n
}
\n\n
async function packData(data, {debug, packedAssets, getProcesses, getScripts, getCustoms}) {\n
\t
let newData = {};
\n\t
newData.options = data.options;
\n\t
newData.views = data.views;
\n\t
newData.assets = packedAssets || data.assets;
\n\t
newData.dataMapping = data.dataMapping;
\n\t
newData.processes = data.processes;
\n\t
newData.customs = data.customs;
\n\n\t
delete newData.options.tpl;
\n\t
deleteUnusedData(newData.processes);
\n\n\t
console.log(TAG, 'start');
\n\n\t
const
{
\n\t\tprocessScriptContent,\n\t\tscriptsContent,\n\t\tcustomScriptContent,\n\t
}
= await divideCode(newData, {\n
\t\t
debug,
\n\t\t
uglify, compile,
\n\t\t
getProcesses, getScripts, getCustoms,
\n\t
});
\n\n\t
return {\n
\t\t
data: JSON.stringify(newData),
\n\t\t
processScriptContent,
\n\t\t
scriptsContent,
\n\t\t
customScriptContent,
\n\t
};
\n
}
\n\n
const unusedFields = ['design'];
\n\n
function deleteUnusedData(processes) {\n
\t
for (let process of processes) {\n
\t\t
if (process.sub) {\n
\t\t\t
for (let uuid in process.sub) {\n
\t\t\t\t
let subProcess = process.sub[uuid];
\n\t\t\t\t
for (let field of unusedFields) {\n
\t\t\t\t\t
if (subProcess.hasOwnProperty(field)) {\n
\t\t\t\t\t\t
delete subProcess[field];
\n\t\t\t\t\t
}
\n\t\t\t\t
}
\n\t\t\t
}
\n\t\t
}
\n\t\t
if (process.metas && process.metas.length > 0)
{
\n\t\t\tdeleteUnusedData(process.metas);\n\t\t}\n\t}\n
}
\n\n
function pageTemplate(tpl, options, version) {\n
\t
const params =
{
\n\t\tversion,\n\t
}
;
\n\t
for (let field of replaceFields) {\n
\t\t
params[field] = options[field];
\n\t
}
\n\t
fillTemplate(options.tpl, options, params);
\n
}
\n\n
function fillTemplate(tpl, options, params) {\n
\t
for (let field in params) {\n
\t\t
const pattern = decamelize(field).toUpperCase();
\n\t\t
tpl = tpl.replace(new RegExp(`
\\\\
$${pattern}
\\\\
$`, 'g'), params[field]);
\n\t
}
\n\n\t
options.newTpl = tpl;
\n
}
\n
"
],
"names"
:
[],
"mappings"
:
"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"
}
\ No newline at end of file
{
"version"
:
3
,
"file"
:
"index.es.js"
,
"sources"
:
[
"../src/code-process.js"
,
"../src/index.js"
],
"sourcesContent"
:
[
"/**
\n
* Created by rockyl on 2019-11-30.
\n
*/
\n\n
import babel from '@babel/core';
\n\n
const UglifyJS = require('uglify-js');
\n\n
export async function compile(source, debug = false) {\n
\t
const {code, map} = await babel.transformAsync(source, {\n
\t\t
presets: [
\n\t\t\t
['@babel/env', {}]
\n\t\t
],
\n\t\t
babelrc: false,
\n\t\t
sourceMaps: debug,
\n\t
});
\n\n\t
const result =
{
\n\t\tcode,\n\t
}
;
\n\t
if (map) {\n
\t\t
result.sourcemap = map.mappings;
\n\t
}
\n\t
return result;
\n
}
\n\n
export function uglify(source){\n
\t
const uglifyResult = UglifyJS.minify(source,
{
\n\t
}
);
\n\t
if (!uglifyResult.error) {\n
\t\t
return uglifyResult.code;
\n\t
}
\n
}"
,
"/**
\n
* Created by rockyl on 2019-11-13.
\n
*
\n
* 项目打包
\n
*/
\n\n
import decamelize from 'decamelize'
\n
import {uglify, compile} from
\"
./code-process
\"
;
\n
import
{
divideCode
}
from 'zeroing-code-divider';
\n\n
const replaceFields = ['pageTitle', 'containerId'];
\n
const TAG = 'zeroing-pack';
\n\n
export async function pack(data, options) {\n
\t
let version = Date.now() + Math.floor(Math.random() * 1000);
\n\t
pageTemplate(data, data.options, version);
\n\t
const newData = await packData(data, options);
\n\n\t
return {\n
\t\t
version,
\n\t\t
data: newData,
\n\t
}
\n
}
\n\n
export function fillTpl(data, params) {\n
\t
const
{
options
}
= data;
\n\t
fillTemplate(options.newTpl, options, params);
\n\n\t
const newTpl = options.newTpl;
\n\t
delete options.newTpl;
\n\t
return newTpl;
\n
}
\n\n
async function packData(data, {debug, packedAssets, getPackages}) {\n
\t
let newData = {};
\n\t
newData.options = data.options;
\n\t
newData.views = data.views;
\n\t
newData.assets = packedAssets || data.assets;
\n\t
newData.dataMapping = data.dataMapping;
\n\t
newData.processes = data.processes;
\n\t
newData.customs = data.customs;
\n\n\t
delete newData.options.tpl;
\n\t
deleteUnusedData(newData.processes);
\n\n\t
console.log(TAG, 'start');
\n\n\t
const
{
\n\t\tprocessScriptContent,\n\t\tscriptsContent,\n\t\tcustomScriptContent,\n\t
}
= await divideCode(newData, {\n
\t\t
debug,
\n\t\t
uglify, compile,
\n\t\t
getPackages,
\n\t
});
\n\n\t
return {\n
\t\t
data: JSON.stringify(newData),
\n\t\t
processScriptContent,
\n\t\t
scriptsContent,
\n\t\t
customScriptContent,
\n\t
};
\n
}
\n\n
const unusedFields = ['design'];
\n\n
function deleteUnusedData(processes) {\n
\t
for (let process of processes) {\n
\t\t
if (process.sub) {\n
\t\t\t
for (let uuid in process.sub) {\n
\t\t\t\t
let subProcess = process.sub[uuid];
\n\t\t\t\t
for (let field of unusedFields) {\n
\t\t\t\t\t
if (subProcess.hasOwnProperty(field)) {\n
\t\t\t\t\t\t
delete subProcess[field];
\n\t\t\t\t\t
}
\n\t\t\t\t
}
\n\t\t\t
}
\n\t\t
}
\n\t\t
if (process.metas && process.metas.length > 0)
{
\n\t\t\tdeleteUnusedData(process.metas);\n\t\t}\n\t}\n
}
\n\n
function pageTemplate(tpl, options, version) {\n
\t
const params =
{
\n\t\tversion,\n\t
}
;
\n\t
for (let field of replaceFields) {\n
\t\t
params[field] = options[field];
\n\t
}
\n\t
fillTemplate(options.tpl, options, params);
\n
}
\n\n
function fillTemplate(tpl, options, params) {\n
\t
for (let field in params) {\n
\t\t
const pattern = decamelize(field).toUpperCase();
\n\t\t
tpl = tpl.replace(new RegExp(`
\\\\
$${pattern}
\\\\
$`, 'g'), params[field]);
\n\t
}
\n\n\t
options.newTpl = tpl;
\n
}
\n
"
],
"names"
:
[],
"mappings"
:
"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"
}
\ No newline at end of file
dist/index.js
View file @
fef8a31c
...
...
@@ -69,7 +69,7 @@ function fillTpl(data, params) {
return
newTpl
;
}
async
function
packData
(
data
,
{
debug
,
packedAssets
,
getP
rocesses
,
getScripts
,
getCustom
s
})
{
async
function
packData
(
data
,
{
debug
,
packedAssets
,
getP
ackage
s
})
{
let
newData
=
{};
newData
.
options
=
data
.
options
;
newData
.
views
=
data
.
views
;
...
...
@@ -90,7 +90,7 @@ async function packData(data, {debug, packedAssets, getProcesses, getScripts, ge
}
=
await
zeroingCodeDivider
.
divideCode
(
newData
,
{
debug
,
uglify
,
compile
,
getP
rocesses
,
getScripts
,
getCustom
s
,
getP
ackage
s
,
});
return
{
...
...
dist/index.js.map
View file @
fef8a31c
{
"version"
:
3
,
"file"
:
"index.js"
,
"sources"
:
[
"../src/code-process.js"
,
"../src/index.js"
],
"sourcesContent"
:
[
"/**
\n
* Created by rockyl on 2019-11-30.
\n
*/
\n\n
import babel from '@babel/core';
\n\n
const UglifyJS = require('uglify-js');
\n\n
export async function compile(source, debug = false) {\n
\t
const {code, map} = await babel.transformAsync(source, {\n
\t\t
presets: [
\n\t\t\t
['@babel/env', {}]
\n\t\t
],
\n\t\t
babelrc: false,
\n\t\t
sourceMaps: debug,
\n\t
});
\n\n\t
const result =
{
\n\t\tcode,\n\t
}
;
\n\t
if (map) {\n
\t\t
result.sourcemap = map.mappings;
\n\t
}
\n\t
return result;
\n
}
\n\n
export function uglify(source){\n
\t
const uglifyResult = UglifyJS.minify(source,
{
\n\t
}
);
\n\t
if (!uglifyResult.error) {\n
\t\t
return uglifyResult.code;
\n\t
}
\n
}"
,
"/**
\n
* Created by rockyl on 2019-11-13.
\n
*
\n
* 项目打包
\n
*/
\n\n
import decamelize from 'decamelize'
\n
import {uglify, compile} from
\"
./code-process
\"
;
\n
import
{
divideCode
}
from 'zeroing-code-divider';
\n\n
const replaceFields = ['pageTitle', 'containerId'];
\n
const TAG = 'zeroing-pack';
\n\n
export async function pack(data, options) {\n
\t
let version = Date.now() + Math.floor(Math.random() * 1000);
\n\t
pageTemplate(data, data.options, version);
\n\t
const newData = await packData(data, options);
\n\n\t
return {\n
\t\t
version,
\n\t\t
data: newData,
\n\t
}
\n
}
\n\n
export function fillTpl(data, params) {\n
\t
const
{
options
}
= data;
\n\t
fillTemplate(options.newTpl, options, params);
\n\n\t
const newTpl = options.newTpl;
\n\t
delete options.newTpl;
\n\t
return newTpl;
\n
}
\n\n
async function packData(data, {debug, packedAssets, getProcesses, getScripts, getCustoms}) {\n
\t
let newData = {};
\n\t
newData.options = data.options;
\n\t
newData.views = data.views;
\n\t
newData.assets = packedAssets || data.assets;
\n\t
newData.dataMapping = data.dataMapping;
\n\t
newData.processes = data.processes;
\n\t
newData.customs = data.customs;
\n\n\t
delete newData.options.tpl;
\n\t
deleteUnusedData(newData.processes);
\n\n\t
console.log(TAG, 'start');
\n\n\t
const
{
\n\t\tprocessScriptContent,\n\t\tscriptsContent,\n\t\tcustomScriptContent,\n\t
}
= await divideCode(newData, {\n
\t\t
debug,
\n\t\t
uglify, compile,
\n\t\t
getProcesses, getScripts, getCustoms,
\n\t
});
\n\n\t
return {\n
\t\t
data: JSON.stringify(newData),
\n\t\t
processScriptContent,
\n\t\t
scriptsContent,
\n\t\t
customScriptContent,
\n\t
};
\n
}
\n\n
const unusedFields = ['design'];
\n\n
function deleteUnusedData(processes) {\n
\t
for (let process of processes) {\n
\t\t
if (process.sub) {\n
\t\t\t
for (let uuid in process.sub) {\n
\t\t\t\t
let subProcess = process.sub[uuid];
\n\t\t\t\t
for (let field of unusedFields) {\n
\t\t\t\t\t
if (subProcess.hasOwnProperty(field)) {\n
\t\t\t\t\t\t
delete subProcess[field];
\n\t\t\t\t\t
}
\n\t\t\t\t
}
\n\t\t\t
}
\n\t\t
}
\n\t\t
if (process.metas && process.metas.length > 0)
{
\n\t\t\tdeleteUnusedData(process.metas);\n\t\t}\n\t}\n
}
\n\n
function pageTemplate(tpl, options, version) {\n
\t
const params =
{
\n\t\tversion,\n\t
}
;
\n\t
for (let field of replaceFields) {\n
\t\t
params[field] = options[field];
\n\t
}
\n\t
fillTemplate(options.tpl, options, params);
\n
}
\n\n
function fillTemplate(tpl, options, params) {\n
\t
for (let field in params) {\n
\t\t
const pattern = decamelize(field).toUpperCase();
\n\t\t
tpl = tpl.replace(new RegExp(`
\\\\
$${pattern}
\\\\
$`, 'g'), params[field]);
\n\t
}
\n\n\t
options.newTpl = tpl;
\n
}
\n
"
],
"names"
:
[
"divideCode"
],
"mappings"
:
"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"
}
\ No newline at end of file
{
"version"
:
3
,
"file"
:
"index.js"
,
"sources"
:
[
"../src/code-process.js"
,
"../src/index.js"
],
"sourcesContent"
:
[
"/**
\n
* Created by rockyl on 2019-11-30.
\n
*/
\n\n
import babel from '@babel/core';
\n\n
const UglifyJS = require('uglify-js');
\n\n
export async function compile(source, debug = false) {\n
\t
const {code, map} = await babel.transformAsync(source, {\n
\t\t
presets: [
\n\t\t\t
['@babel/env', {}]
\n\t\t
],
\n\t\t
babelrc: false,
\n\t\t
sourceMaps: debug,
\n\t
});
\n\n\t
const result =
{
\n\t\tcode,\n\t
}
;
\n\t
if (map) {\n
\t\t
result.sourcemap = map.mappings;
\n\t
}
\n\t
return result;
\n
}
\n\n
export function uglify(source){\n
\t
const uglifyResult = UglifyJS.minify(source,
{
\n\t
}
);
\n\t
if (!uglifyResult.error) {\n
\t\t
return uglifyResult.code;
\n\t
}
\n
}"
,
"/**
\n
* Created by rockyl on 2019-11-13.
\n
*
\n
* 项目打包
\n
*/
\n\n
import decamelize from 'decamelize'
\n
import {uglify, compile} from
\"
./code-process
\"
;
\n
import
{
divideCode
}
from 'zeroing-code-divider';
\n\n
const replaceFields = ['pageTitle', 'containerId'];
\n
const TAG = 'zeroing-pack';
\n\n
export async function pack(data, options) {\n
\t
let version = Date.now() + Math.floor(Math.random() * 1000);
\n\t
pageTemplate(data, data.options, version);
\n\t
const newData = await packData(data, options);
\n\n\t
return {\n
\t\t
version,
\n\t\t
data: newData,
\n\t
}
\n
}
\n\n
export function fillTpl(data, params) {\n
\t
const
{
options
}
= data;
\n\t
fillTemplate(options.newTpl, options, params);
\n\n\t
const newTpl = options.newTpl;
\n\t
delete options.newTpl;
\n\t
return newTpl;
\n
}
\n\n
async function packData(data, {debug, packedAssets, getPackages}) {\n
\t
let newData = {};
\n\t
newData.options = data.options;
\n\t
newData.views = data.views;
\n\t
newData.assets = packedAssets || data.assets;
\n\t
newData.dataMapping = data.dataMapping;
\n\t
newData.processes = data.processes;
\n\t
newData.customs = data.customs;
\n\n\t
delete newData.options.tpl;
\n\t
deleteUnusedData(newData.processes);
\n\n\t
console.log(TAG, 'start');
\n\n\t
const
{
\n\t\tprocessScriptContent,\n\t\tscriptsContent,\n\t\tcustomScriptContent,\n\t
}
= await divideCode(newData, {\n
\t\t
debug,
\n\t\t
uglify, compile,
\n\t\t
getPackages,
\n\t
});
\n\n\t
return {\n
\t\t
data: JSON.stringify(newData),
\n\t\t
processScriptContent,
\n\t\t
scriptsContent,
\n\t\t
customScriptContent,
\n\t
};
\n
}
\n\n
const unusedFields = ['design'];
\n\n
function deleteUnusedData(processes) {\n
\t
for (let process of processes) {\n
\t\t
if (process.sub) {\n
\t\t\t
for (let uuid in process.sub) {\n
\t\t\t\t
let subProcess = process.sub[uuid];
\n\t\t\t\t
for (let field of unusedFields) {\n
\t\t\t\t\t
if (subProcess.hasOwnProperty(field)) {\n
\t\t\t\t\t\t
delete subProcess[field];
\n\t\t\t\t\t
}
\n\t\t\t\t
}
\n\t\t\t
}
\n\t\t
}
\n\t\t
if (process.metas && process.metas.length > 0)
{
\n\t\t\tdeleteUnusedData(process.metas);\n\t\t}\n\t}\n
}
\n\n
function pageTemplate(tpl, options, version) {\n
\t
const params =
{
\n\t\tversion,\n\t
}
;
\n\t
for (let field of replaceFields) {\n
\t\t
params[field] = options[field];
\n\t
}
\n\t
fillTemplate(options.tpl, options, params);
\n
}
\n\n
function fillTemplate(tpl, options, params) {\n
\t
for (let field in params) {\n
\t\t
const pattern = decamelize(field).toUpperCase();
\n\t\t
tpl = tpl.replace(new RegExp(`
\\\\
$${pattern}
\\\\
$`, 'g'), params[field]);
\n\t
}
\n\n\t
options.newTpl = tpl;
\n
}
\n
"
],
"names"
:
[
"divideCode"
],
"mappings"
:
";;;;;;;;;;AAAA;;;AAGA,AAEA;AACA,MAAM,QAAQ,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;;AAEtC,AAAO,eAAe,OAAO,CAAC,MAAM,EAAE,KAAK,GAAG,KAAK,EAAE;CACpD,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,GAAG,MAAM,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE;EACtD,OAAO,EAAE;GACR,CAAC,YAAY,EAAE,EAAE,CAAC;GAClB;EACD,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,KAAK;EACjB,CAAC,CAAC;;CAEH,MAAM,MAAM,GAAG;EACd,IAAI;EACJ,CAAC;CACF,IAAI,GAAG,EAAE;EACR,MAAM,CAAC,SAAS,GAAG,GAAG,CAAC,QAAQ,CAAC;EAChC;CACD,OAAO,MAAM,CAAC;CACd;;AAED,AAAO,SAAS,MAAM,CAAC,MAAM,CAAC;CAC7B,MAAM,YAAY,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE;EAC5C,CAAC,CAAC;CACH,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE;EACxB,OAAO,YAAY,CAAC,IAAI,CAAC;EACzB;;;AC/BF;;;;;AAKA,AAIA;AACA,MAAM,aAAa,GAAG,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC;AACnD,MAAM,GAAG,GAAG,cAAc,CAAC;;AAE3B,AAAO,eAAe,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE;CACzC,IAAI,OAAO,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC;CAC5D,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;CAC1C,MAAM,OAAO,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;CAE9C,OAAO;EACN,OAAO;EACP,IAAI,EAAE,OAAO;EACb;CACD;;AAED,AAAO,SAAS,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE;CACrC,MAAM,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;CACvB,YAAY,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;;CAE9C,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CAC9B,OAAO,OAAO,CAAC,MAAM,CAAC;CACtB,OAAO,MAAM,CAAC;CACd;;AAED,eAAe,QAAQ,CAAC,IAAI,EAAE,CAAC,KAAK,EAAE,YAAY,EAAE,WAAW,CAAC,EAAE;CACjE,IAAI,OAAO,GAAG,EAAE,CAAC;CACjB,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;CAC/B,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;CAC3B,OAAO,CAAC,MAAM,GAAG,YAAY,IAAI,IAAI,CAAC,MAAM,CAAC;CAC7C,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;CACvC,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;CACnC,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;;CAE/B,OAAO,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC;CAC3B,gBAAgB,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;;CAEpC,OAAO,CAAC,GAAG,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;;CAE1B,MAAM;EACL,oBAAoB;EACpB,cAAc;EACd,mBAAmB;EACnB,GAAG,MAAMA,6BAAU,CAAC,OAAO,EAAE;EAC7B,KAAK;EACL,MAAM,EAAE,OAAO;EACf,WAAW;EACX,CAAC,CAAC;;CAEH,OAAO;EACN,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC;EAC7B,oBAAoB;EACpB,cAAc;EACd,mBAAmB;EACnB,CAAC;CACF;;AAED,MAAM,YAAY,GAAG,CAAC,QAAQ,CAAC,CAAC;;AAEhC,SAAS,gBAAgB,CAAC,SAAS,EAAE;CACpC,KAAK,IAAI,OAAO,IAAI,SAAS,EAAE;EAC9B,IAAI,OAAO,CAAC,GAAG,EAAE;GAChB,KAAK,IAAI,IAAI,IAAI,OAAO,CAAC,GAAG,EAAE;IAC7B,IAAI,UAAU,GAAG,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;IACnC,KAAK,IAAI,KAAK,IAAI,YAAY,EAAE;KAC/B,IAAI,UAAU,CAAC,cAAc,CAAC,KAAK,CAAC,EAAE;MACrC,OAAO,UAAU,CAAC,KAAK,CAAC,CAAC;MACzB;KACD;IACD;GACD;EACD,IAAI,OAAO,CAAC,KAAK,IAAI,OAAO,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;GAC9C,gBAAgB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;GAChC;EACD;CACD;;AAED,SAAS,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,OAAO,EAAE;CAC5C,MAAM,MAAM,GAAG;EACd,OAAO;EACP,CAAC;CACF,KAAK,IAAI,KAAK,IAAI,aAAa,EAAE;EAChC,MAAM,CAAC,KAAK,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;EAC/B;CACD,YAAY,CAAC,OAAO,CAAC,GAAG,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;CAC3C;;AAED,SAAS,YAAY,CAAC,GAAG,EAAE,OAAO,EAAE,MAAM,EAAE;CAC3C,KAAK,IAAI,KAAK,IAAI,MAAM,EAAE;EACzB,MAAM,OAAO,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC,WAAW,EAAE,CAAC;EAChD,GAAG,GAAG,GAAG,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,CAAC,GAAG,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;EACtE;;CAED,OAAO,CAAC,MAAM,GAAG,GAAG,CAAC;CACrB;;;;;"
}
\ No newline at end of file
dist/index.umd.js
View file @
fef8a31c
...
...
@@ -68,7 +68,7 @@
return
newTpl
;
}
async
function
packData
(
data
,
{
debug
,
packedAssets
,
getP
rocesses
,
getScripts
,
getCustom
s
})
{
async
function
packData
(
data
,
{
debug
,
packedAssets
,
getP
ackage
s
})
{
let
newData
=
{};
newData
.
options
=
data
.
options
;
newData
.
views
=
data
.
views
;
...
...
@@ -89,7 +89,7 @@
}
=
await
zeroingCodeDivider
.
divideCode
(
newData
,
{
debug
,
uglify
,
compile
,
getP
rocesses
,
getScripts
,
getCustom
s
,
getP
ackage
s
,
});
return
{
...
...
dist/index.umd.js.map
View file @
fef8a31c
{
"version"
:
3
,
"file"
:
"index.umd.js"
,
"sources"
:
[
"../src/code-process.js"
,
"../src/index.js"
],
"sourcesContent"
:
[
"/**
\n
* Created by rockyl on 2019-11-30.
\n
*/
\n\n
import babel from '@babel/core';
\n\n
const UglifyJS = require('uglify-js');
\n\n
export async function compile(source, debug = false) {\n
\t
const {code, map} = await babel.transformAsync(source, {\n
\t\t
presets: [
\n\t\t\t
['@babel/env', {}]
\n\t\t
],
\n\t\t
babelrc: false,
\n\t\t
sourceMaps: debug,
\n\t
});
\n\n\t
const result =
{
\n\t\tcode,\n\t
}
;
\n\t
if (map) {\n
\t\t
result.sourcemap = map.mappings;
\n\t
}
\n\t
return result;
\n
}
\n\n
export function uglify(source){\n
\t
const uglifyResult = UglifyJS.minify(source,
{
\n\t
}
);
\n\t
if (!uglifyResult.error) {\n
\t\t
return uglifyResult.code;
\n\t
}
\n
}"
,
"/**
\n
* Created by rockyl on 2019-11-13.
\n
*
\n
* 项目打包
\n
*/
\n\n
import decamelize from 'decamelize'
\n
import {uglify, compile} from
\"
./code-process
\"
;
\n
import
{
divideCode
}
from 'zeroing-code-divider';
\n\n
const replaceFields = ['pageTitle', 'containerId'];
\n
const TAG = 'zeroing-pack';
\n\n
export async function pack(data, options) {\n
\t
let version = Date.now() + Math.floor(Math.random() * 1000);
\n\t
pageTemplate(data, data.options, version);
\n\t
const newData = await packData(data, options);
\n\n\t
return {\n
\t\t
version,
\n\t\t
data: newData,
\n\t
}
\n
}
\n\n
export function fillTpl(data, params) {\n
\t
const
{
options
}
= data;
\n\t
fillTemplate(options.newTpl, options, params);
\n\n\t
const newTpl = options.newTpl;
\n\t
delete options.newTpl;
\n\t
return newTpl;
\n
}
\n\n
async function packData(data, {debug, packedAssets, getProcesses, getScripts, getCustoms}) {\n
\t
let newData = {};
\n\t
newData.options = data.options;
\n\t
newData.views = data.views;
\n\t
newData.assets = packedAssets || data.assets;
\n\t
newData.dataMapping = data.dataMapping;
\n\t
newData.processes = data.processes;
\n\t
newData.customs = data.customs;
\n\n\t
delete newData.options.tpl;
\n\t
deleteUnusedData(newData.processes);
\n\n\t
console.log(TAG, 'start');
\n\n\t
const
{
\n\t\tprocessScriptContent,\n\t\tscriptsContent,\n\t\tcustomScriptContent,\n\t
}
= await divideCode(newData, {\n
\t\t
debug,
\n\t\t
uglify, compile,
\n\t\t
getProcesses, getScripts, getCustoms,
\n\t
});
\n\n\t
return {\n
\t\t
data: JSON.stringify(newData),
\n\t\t
processScriptContent,
\n\t\t
scriptsContent,
\n\t\t
customScriptContent,
\n\t
};
\n
}
\n\n
const unusedFields = ['design'];
\n\n
function deleteUnusedData(processes) {\n
\t
for (let process of processes) {\n
\t\t
if (process.sub) {\n
\t\t\t
for (let uuid in process.sub) {\n
\t\t\t\t
let subProcess = process.sub[uuid];
\n\t\t\t\t
for (let field of unusedFields) {\n
\t\t\t\t\t
if (subProcess.hasOwnProperty(field)) {\n
\t\t\t\t\t\t
delete subProcess[field];
\n\t\t\t\t\t
}
\n\t\t\t\t
}
\n\t\t\t
}
\n\t\t
}
\n\t\t
if (process.metas && process.metas.length > 0)
{
\n\t\t\tdeleteUnusedData(process.metas);\n\t\t}\n\t}\n
}
\n\n
function pageTemplate(tpl, options, version) {\n
\t
const params =
{
\n\t\tversion,\n\t
}
;
\n\t
for (let field of replaceFields) {\n
\t\t
params[field] = options[field];
\n\t
}
\n\t
fillTemplate(options.tpl, options, params);
\n
}
\n\n
function fillTemplate(tpl, options, params) {\n
\t
for (let field in params) {\n
\t\t
const pattern = decamelize(field).toUpperCase();
\n\t\t
tpl = tpl.replace(new RegExp(`
\\\\
$${pattern}
\\\\
$`, 'g'), params[field]);
\n\t
}
\n\n\t
options.newTpl = tpl;
\n
}
\n
"
],
"names"
:
[
"divideCode"
],
"mappings"
:
"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"
}
\ No newline at end of file
{
"version"
:
3
,
"file"
:
"index.umd.js"
,
"sources"
:
[
"../src/code-process.js"
,
"../src/index.js"
],
"sourcesContent"
:
[
"/**
\n
* Created by rockyl on 2019-11-30.
\n
*/
\n\n
import babel from '@babel/core';
\n\n
const UglifyJS = require('uglify-js');
\n\n
export async function compile(source, debug = false) {\n
\t
const {code, map} = await babel.transformAsync(source, {\n
\t\t
presets: [
\n\t\t\t
['@babel/env', {}]
\n\t\t
],
\n\t\t
babelrc: false,
\n\t\t
sourceMaps: debug,
\n\t
});
\n\n\t
const result =
{
\n\t\tcode,\n\t
}
;
\n\t
if (map) {\n
\t\t
result.sourcemap = map.mappings;
\n\t
}
\n\t
return result;
\n
}
\n\n
export function uglify(source){\n
\t
const uglifyResult = UglifyJS.minify(source,
{
\n\t
}
);
\n\t
if (!uglifyResult.error) {\n
\t\t
return uglifyResult.code;
\n\t
}
\n
}"
,
"/**
\n
* Created by rockyl on 2019-11-13.
\n
*
\n
* 项目打包
\n
*/
\n\n
import decamelize from 'decamelize'
\n
import {uglify, compile} from
\"
./code-process
\"
;
\n
import
{
divideCode
}
from 'zeroing-code-divider';
\n\n
const replaceFields = ['pageTitle', 'containerId'];
\n
const TAG = 'zeroing-pack';
\n\n
export async function pack(data, options) {\n
\t
let version = Date.now() + Math.floor(Math.random() * 1000);
\n\t
pageTemplate(data, data.options, version);
\n\t
const newData = await packData(data, options);
\n\n\t
return {\n
\t\t
version,
\n\t\t
data: newData,
\n\t
}
\n
}
\n\n
export function fillTpl(data, params) {\n
\t
const
{
options
}
= data;
\n\t
fillTemplate(options.newTpl, options, params);
\n\n\t
const newTpl = options.newTpl;
\n\t
delete options.newTpl;
\n\t
return newTpl;
\n
}
\n\n
async function packData(data, {debug, packedAssets, getPackages}) {\n
\t
let newData = {};
\n\t
newData.options = data.options;
\n\t
newData.views = data.views;
\n\t
newData.assets = packedAssets || data.assets;
\n\t
newData.dataMapping = data.dataMapping;
\n\t
newData.processes = data.processes;
\n\t
newData.customs = data.customs;
\n\n\t
delete newData.options.tpl;
\n\t
deleteUnusedData(newData.processes);
\n\n\t
console.log(TAG, 'start');
\n\n\t
const
{
\n\t\tprocessScriptContent,\n\t\tscriptsContent,\n\t\tcustomScriptContent,\n\t
}
= await divideCode(newData, {\n
\t\t
debug,
\n\t\t
uglify, compile,
\n\t\t
getPackages,
\n\t
});
\n\n\t
return {\n
\t\t
data: JSON.stringify(newData),
\n\t\t
processScriptContent,
\n\t\t
scriptsContent,
\n\t\t
customScriptContent,
\n\t
};
\n
}
\n\n
const unusedFields = ['design'];
\n\n
function deleteUnusedData(processes) {\n
\t
for (let process of processes) {\n
\t\t
if (process.sub) {\n
\t\t\t
for (let uuid in process.sub) {\n
\t\t\t\t
let subProcess = process.sub[uuid];
\n\t\t\t\t
for (let field of unusedFields) {\n
\t\t\t\t\t
if (subProcess.hasOwnProperty(field)) {\n
\t\t\t\t\t\t
delete subProcess[field];
\n\t\t\t\t\t
}
\n\t\t\t\t
}
\n\t\t\t
}
\n\t\t
}
\n\t\t
if (process.metas && process.metas.length > 0)
{
\n\t\t\tdeleteUnusedData(process.metas);\n\t\t}\n\t}\n
}
\n\n
function pageTemplate(tpl, options, version) {\n
\t
const params =
{
\n\t\tversion,\n\t
}
;
\n\t
for (let field of replaceFields) {\n
\t\t
params[field] = options[field];
\n\t
}
\n\t
fillTemplate(options.tpl, options, params);
\n
}
\n\n
function fillTemplate(tpl, options, params) {\n
\t
for (let field in params) {\n
\t\t
const pattern = decamelize(field).toUpperCase();
\n\t\t
tpl = tpl.replace(new RegExp(`
\\\\
$${pattern}
\\\\
$`, 'g'), params[field]);
\n\t
}
\n\n\t
options.newTpl = tpl;
\n
}
\n
"
],
"names"
:
[
"divideCode"
],
"mappings"
:
"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"
}
\ No newline at end of file
src/index.js
View file @
fef8a31c
...
...
@@ -31,7 +31,7 @@ export function fillTpl(data, params) {
return
newTpl
;
}
async
function
packData
(
data
,
{
debug
,
packedAssets
,
getP
rocesses
,
getScripts
,
getCustom
s
})
{
async
function
packData
(
data
,
{
debug
,
packedAssets
,
getP
ackage
s
})
{
let
newData
=
{};
newData
.
options
=
data
.
options
;
newData
.
views
=
data
.
views
;
...
...
@@ -52,7 +52,7 @@ async function packData(data, {debug, packedAssets, getProcesses, getScripts, ge
}
=
await
divideCode
(
newData
,
{
debug
,
uglify
,
compile
,
getP
rocesses
,
getScripts
,
getCustom
s
,
getP
ackage
s
,
});
return
{
...
...
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