2018-10-24 13:53:34 +00:00
|
|
|
import klawSync from 'klaw-sync'
|
2018-10-30 20:42:53 +00:00
|
|
|
|
|
|
|
export { getNuxtConfig } from '../../packages/config'
|
2018-10-24 13:53:34 +00:00
|
|
|
export { default as getPort } from 'get-port'
|
|
|
|
export { default as rp } from 'request-promise-native'
|
2018-03-18 23:41:14 +00:00
|
|
|
|
2018-10-24 13:53:34 +00:00
|
|
|
export * from './nuxt'
|
2018-06-06 12:31:43 +00:00
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
export const listPaths = function listPaths (dir, pathsBefore = [], options = {}) {
|
2018-09-18 14:26:41 +00:00
|
|
|
if (Array.isArray(pathsBefore) && pathsBefore.length) {
|
2018-10-24 13:53:34 +00:00
|
|
|
// Only return files that didn't exist before building
|
2018-09-18 14:26:41 +00:00
|
|
|
// and files that have been changed
|
|
|
|
options.filter = (item) => {
|
2018-10-24 13:53:34 +00:00
|
|
|
const foundItem = pathsBefore.find((itemBefore) => {
|
2018-09-18 14:26:41 +00:00
|
|
|
return item.path === itemBefore.path
|
|
|
|
})
|
|
|
|
return typeof foundItem === 'undefined' ||
|
|
|
|
item.stats.mtimeMs !== foundItem.stats.mtimeMs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return klawSync(dir, options)
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
export const equalOrStartsWith = function equalOrStartsWith (string1, string2) {
|
2018-09-18 14:26:41 +00:00
|
|
|
return string1 === string2 || string2.startsWith(string1)
|
|
|
|
}
|