新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
var mergeIntoShorthands = require('./merge-into-shorthands');
|
|
var overrideProperties = require('./override-properties');
|
|
var populateComponents = require('./populate-components');
|
|
|
|
var restoreWithComponents = require('../restore-with-components');
|
|
|
|
var wrapForOptimizing = require('../../wrap-for-optimizing').all;
|
|
var removeUnused = require('../../remove-unused');
|
|
var restoreFromOptimizing = require('../../restore-from-optimizing');
|
|
|
|
var OptimizationLevel = require('../../../options/optimization-level').OptimizationLevel;
|
|
|
|
function optimizeProperties(properties, withOverriding, withMerging, context) {
|
|
var levelOptions = context.options.level[OptimizationLevel.Two];
|
|
var _properties = wrapForOptimizing(properties, levelOptions.skipProperties);
|
|
var _property;
|
|
var i, l;
|
|
|
|
populateComponents(_properties, context.validator, context.warnings);
|
|
|
|
for (i = 0, l = _properties.length; i < l; i++) {
|
|
_property = _properties[i];
|
|
if (_property.block) {
|
|
optimizeProperties(_property.value[0][1], withOverriding, withMerging, context);
|
|
}
|
|
}
|
|
|
|
if (withMerging && levelOptions.mergeIntoShorthands) {
|
|
mergeIntoShorthands(_properties, context.validator);
|
|
}
|
|
|
|
if (withOverriding && levelOptions.overrideProperties) {
|
|
overrideProperties(_properties, withMerging, context.options.compatibility, context.validator);
|
|
}
|
|
|
|
restoreFromOptimizing(_properties, restoreWithComponents);
|
|
removeUnused(_properties);
|
|
}
|
|
|
|
module.exports = optimizeProperties;
|