mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
322aeb1042
* chore(deps): update all non-major dependencies * test: disable got decompress Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: pooya parsa <pooya@pi0.ir>
31 lines
902 B
JavaScript
31 lines
902 B
JavaScript
import klawSync from 'klaw-sync'
|
|
import got from 'got'
|
|
|
|
export { getNuxtConfig } from '../../packages/config'
|
|
export { default as getPort } from 'get-port'
|
|
|
|
export * from './nuxt'
|
|
export * from './resource-size'
|
|
|
|
export function listPaths (dir, pathsBefore = [], options = {}) {
|
|
if (Array.isArray(pathsBefore) && pathsBefore.length) {
|
|
// Only return files that didn't exist before building
|
|
// and files that have been changed
|
|
options.filter = (item) => {
|
|
const foundItem = pathsBefore.find((itemBefore) => {
|
|
return item.path === itemBefore.path
|
|
})
|
|
return typeof foundItem === 'undefined' ||
|
|
item.stats.mtimeMs !== foundItem.stats.mtimeMs
|
|
}
|
|
}
|
|
|
|
return klawSync(dir, options)
|
|
}
|
|
|
|
export function equalOrStartsWith (string1, string2) {
|
|
return string1 === string2 || string2.startsWith(string1)
|
|
}
|
|
|
|
export const rp = got.extend({ decompress: false })
|