-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-scripts.js
executable file
·89 lines (79 loc) · 2.9 KB
/
package-scripts.js
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* eslint-disable @typescript-eslint/no-var-requires */
const { tasks } = require('@gobstones/gobstones-scripts');
const defaultConfiguration = {
options: {
scripts: false,
logLevel: 'warn',
'help-style': 'basic'
},
scripts: {
default: {
script: tasks.nps('help'),
hiddenFromHelp: true
},
dev: {
script: tasks.serially(
tasks.nps('clean.dist'),
tasks.npx('@11ty/eleventy --serve')
),
description: 'Run the eleventy server in development mode'
},
test: {
script: tasks.serially(
tasks.nps('lint'),
tasks.node('./test/test-runner.js')
),
description: 'Run the linter and verify all links'
},
build: {
script: tasks.serially(
tasks.nps('clean.dist'),
tasks.npx('@11ty/eleventy')
),
description: 'Build the application into "dist" folder'
},
clean: {
script: tasks.nps('clean.dist'),
description: 'Remove all automatically generated files and folders',
hiddenFromHelp: true,
dist: {
script: tasks.remove({ files: './dist' }),
description: 'Delete the dist folder',
hiddenFromHelp: true
}
},
lint: {
script: tasks.npx('markdownlint-cli --config markdownlint.config.js "./src/pages/**/*.md"'),
description: 'Run the linter on all the pages (src/pages)',
fix: {
script: tasks.npx('markdownlint-cli --config markdownlint.config.js --fix "./src/pages/**/*.md"'),
description: 'Run the linter on all the pages (src/pages) fixing all auto-fixable errors'
}
},
prettify: {
script: tasks.nps('lint'),
description: 'Run the linter attempting to fix all errors'
},
changelog: {
script: tasks.npx('conventional-changelog -p angular -i CHANGELOG.md -s'),
description: 'Generate changelog based on tags',
hiddenFromHelp: true,
scratch: {
script: tasks.npx('conventional-changelog -p angular -i CHANGELOG.md -s -r 0'),
description: 'Generate changelog based on tags, starting from scratch',
hiddenFromHelp: true
},
},
license: {
script: tasks.license(),
hiddenFromHelp: true,
description: 'Add license information to all code files in the project',
remove: {
script: tasks.license('remove'),
hiddenFromHelp: true,
description: 'Add license information to all code files in the project'
}
}
}
};
module.exports = defaultConfiguration;