зеркало из https://github.com/microsoft/SandDance.git
web deployment update (#677)
* restore data-inference after clean * deployment
This commit is contained in:
Родитель
610d506f8e
Коммит
87036e2b08
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1712,7 +1712,8 @@
|
|||
}
|
||||
sum += num;
|
||||
}
|
||||
if (columnType === 'string' && !stats.hasColorData && isColor(value)) {
|
||||
// hex codes, ex. #003300, are parsed as dates
|
||||
if ((columnType === 'date' || columnType === 'string') && !stats.hasColorData && isColor(value)) {
|
||||
stats.hasColorData = true;
|
||||
}
|
||||
}
|
||||
|
@ -1768,7 +1769,8 @@
|
|||
if (!column.stats) {
|
||||
column.stats = getStats(data, column);
|
||||
}
|
||||
if (column.type === 'string' && typeof column.isColorData !== 'boolean') {
|
||||
// hex codes, ex. #003300, are parsed as dates
|
||||
if ((column.type === 'date' || column.type === 'string') && typeof column.isColorData !== 'boolean') {
|
||||
checkIsColorData(data, column);
|
||||
}
|
||||
}
|
||||
|
@ -3502,7 +3504,7 @@
|
|||
input: 'range',
|
||||
min: 1,
|
||||
max: 10,
|
||||
step: 1,
|
||||
step: 0.1,
|
||||
},
|
||||
}, {
|
||||
name: SignalNames.ZGrounded,
|
||||
|
|
|
@ -502,7 +502,8 @@
|
|||
}
|
||||
sum += num;
|
||||
}
|
||||
if (columnType === 'string' && !stats.hasColorData && isColor(value)) {
|
||||
// hex codes, ex. #003300, are parsed as dates
|
||||
if ((columnType === 'date' || columnType === 'string') && !stats.hasColorData && isColor(value)) {
|
||||
stats.hasColorData = true;
|
||||
}
|
||||
}
|
||||
|
@ -558,7 +559,8 @@
|
|||
if (!column.stats) {
|
||||
column.stats = getStats(data, column);
|
||||
}
|
||||
if (column.type === 'string' && typeof column.isColorData !== 'boolean') {
|
||||
// hex codes, ex. #003300, are parsed as dates
|
||||
if ((column.type === 'date' || column.type === 'string') && typeof column.isColorData !== 'boolean') {
|
||||
checkIsColorData(data, column);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1697,7 +1697,8 @@
|
|||
}
|
||||
sum += num;
|
||||
}
|
||||
if (columnType === 'string' && !stats.hasColorData && isColor(value)) {
|
||||
// hex codes, ex. #003300, are parsed as dates
|
||||
if ((columnType === 'date' || columnType === 'string') && !stats.hasColorData && isColor(value)) {
|
||||
stats.hasColorData = true;
|
||||
}
|
||||
}
|
||||
|
@ -1753,7 +1754,8 @@
|
|||
if (!column.stats) {
|
||||
column.stats = getStats(data, column);
|
||||
}
|
||||
if (column.type === 'string' && typeof column.isColorData !== 'boolean') {
|
||||
// hex codes, ex. #003300, are parsed as dates
|
||||
if ((column.type === 'date' || column.type === 'string') && typeof column.isColorData !== 'boolean') {
|
||||
checkIsColorData(data, column);
|
||||
}
|
||||
}
|
||||
|
@ -3487,7 +3489,7 @@
|
|||
input: 'range',
|
||||
min: 1,
|
||||
max: 10,
|
||||
step: 1,
|
||||
step: 0.1,
|
||||
},
|
||||
}, {
|
||||
name: SignalNames.ZGrounded,
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -26,7 +26,7 @@
|
|||
"serve-app": "parcel serve ./test/sanddance-app.html --port 8085 --open --no-autoinstall",
|
||||
"start": "npm-run-all --parallel watch-typescript watch-css serve-app",
|
||||
"parcel": "lerna run parcel --parallel",
|
||||
"restore-dist": "git checkout -q -- ./packages/sanddance/dist/umd/sanddance.d.ts ./packages/sanddance-react/dist/umd/sanddance-react.d.ts ./packages/vega-deck.gl/dist/umd/vega-deck.gl.d.ts ./packages/vega-morphcharts/dist/umd/vega-morphcharts.d.ts ./packages/sanddance-specs/dist/umd/sanddance-specs.d.ts",
|
||||
"restore-dist": "git checkout -q -- ./packages/sanddance/dist/umd/sanddance.d.ts ./packages/sanddance-react/dist/umd/sanddance-react.d.ts ./packages/vega-deck.gl/dist/umd/vega-deck.gl.d.ts ./packages/vega-morphcharts/dist/umd/vega-morphcharts.d.ts ./packages/sanddance-specs/dist/umd/sanddance-specs.d.ts ./packages/data-inference/dist/umd/data-inference.d.ts",
|
||||
"clean-parcel-cache": "rimraf ./packages/**/.cache/ && rimraf ./packages/**/.parcel-cache/",
|
||||
"clean-build": "npm run clean-parcel-cache && rimraf ./packages/**/dist/ && rimraf ./**/package-lock.json && rimraf ./lerna-debug.log",
|
||||
"clean": "lerna clean --yes && npm run clean-build && npm run restore-dist",
|
||||
|
|
Загрузка…
Ссылка в новой задаче