-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtangible.config.js
More file actions
45 lines (41 loc) · 953 Bytes
/
tangible.config.js
File metadata and controls
45 lines (41 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { dirname, join } from 'path'
import { fileURLToPath } from 'url'
const __dirname = dirname(fileURLToPath(import.meta.url))
export default async () => {
const build = []
for (const name of ['api', 'preact', 'select']) {
const tasks = (await import(`./${name}/tangible.config.js`)).default.build
build.push(
...tasks.map((task) => ({
...task,
name,
src: join(__dirname, name, task.src),
dest: join(__dirname, name, task.dest),
}))
)
}
return {
build,
format: ['**/*.{php,ts,tsx,scss}', '!build'],
archive: {
root: 'tangible-framework',
dest: 'publish/tangible-framework.zip',
src: [
'**/*',
],
exclude: [
'/.*',
'/*.json',
'/*.js',
'/artifacts',
'/publish',
'/tests',
'/vendor',
'*.test.js',
'*.scss',
'*.ts',
'*.tsx',
],
},
}
}