create-node-lib 2.5.1 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/CODEOWNERS +1 -0
- package/.github/workflows/main.yml +16 -16
- package/__tests__/generator.test.js +6 -6
- package/package.json +33 -30
- package/saofile.js +15 -19
- package/template/.github/.markdownlint.yml +9 -0
- package/template/.github/CODEOWNERS +1 -0
- package/template/{CONTRIBUTING.md → .github/CONTRIBUTING.md} +9 -5
- package/template/.github/ISSUE_TEMPLATE/1-bug-report.yml +31 -0
- package/template/.github/ISSUE_TEMPLATE/2-feature-request.yml +23 -0
- package/template/.github/dependabot.yml +38 -0
- package/template/.github/labeler.yml +20 -0
- package/template/.github/workflows/ci.yml +49 -0
- package/template/.github/workflows/labeler.yml +12 -0
- package/template/.github/workflows/links-checker-schedule.yml +28 -0
- package/template/.github/workflows/lock-threads.yml +34 -0
- package/template/.github/workflows/markdown-lint.yml +26 -0
- package/template/.github/workflows/release.yml +38 -0
- package/template/.husky/commit-msg +1 -1
- package/template/README.md +8 -17
- package/template/RELEASE.md +42 -0
- package/template/SECURITY.md +14 -5
- package/template/__tests__/app.test.ts +17 -0
- package/template/eslint.config.js +32 -0
- package/template/package.json +52 -176
- package/template/src/bin/cli.ts +12 -0
- package/template/src/main.ts +3 -0
- package/template/tsconfig.json +37 -0
- package/template/tsup.config.ts +29 -0
- package/template/.github/ISSUE_TEMPLATE/1-bug-report.md +0 -44
- package/template/.github/ISSUE_TEMPLATE/2-feature-request.md +0 -19
- package/template/.github/workflows/main.yml +0 -53
- package/template/__tests__/app.test.js +0 -5
- package/template/bin/cli.js +0 -4
- package/template/gitignore +0 -110
- package/template/src/main.js +0 -5
- /package/template/{CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md} +0 -0
package/template/gitignore
DELETED
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
.dccache
|
|
2
|
-
|
|
3
|
-
# Logs
|
|
4
|
-
|
|
5
|
-
logs
|
|
6
|
-
_.log
|
|
7
|
-
npm-debug.log_
|
|
8
|
-
yarn-debug.log*
|
|
9
|
-
yarn-error.log*
|
|
10
|
-
|
|
11
|
-
# Runtime data
|
|
12
|
-
|
|
13
|
-
pids
|
|
14
|
-
_.pid
|
|
15
|
-
_.seed
|
|
16
|
-
\*.pid.lock
|
|
17
|
-
|
|
18
|
-
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
19
|
-
|
|
20
|
-
lib-cov
|
|
21
|
-
|
|
22
|
-
# Coverage directory used by tools like istanbul
|
|
23
|
-
|
|
24
|
-
coverage
|
|
25
|
-
|
|
26
|
-
# nyc test coverage
|
|
27
|
-
|
|
28
|
-
.nyc_output
|
|
29
|
-
|
|
30
|
-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
31
|
-
|
|
32
|
-
.grunt
|
|
33
|
-
|
|
34
|
-
# Bower dependency directory (https://bower.io/)
|
|
35
|
-
|
|
36
|
-
bower_components
|
|
37
|
-
|
|
38
|
-
# node-waf configuration
|
|
39
|
-
|
|
40
|
-
.lock-wscript
|
|
41
|
-
|
|
42
|
-
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
43
|
-
|
|
44
|
-
build/Release
|
|
45
|
-
|
|
46
|
-
# Dependency directories
|
|
47
|
-
|
|
48
|
-
node_modules/
|
|
49
|
-
jspm_packages/
|
|
50
|
-
|
|
51
|
-
# TypeScript v1 declaration files
|
|
52
|
-
|
|
53
|
-
typings/
|
|
54
|
-
|
|
55
|
-
# Optional npm cache directory
|
|
56
|
-
|
|
57
|
-
.npm
|
|
58
|
-
|
|
59
|
-
# Optional eslint cache
|
|
60
|
-
|
|
61
|
-
.eslintcache
|
|
62
|
-
|
|
63
|
-
# Optional REPL history
|
|
64
|
-
|
|
65
|
-
.node_repl_history
|
|
66
|
-
|
|
67
|
-
# Output of 'npm pack'
|
|
68
|
-
|
|
69
|
-
\*.tgz
|
|
70
|
-
|
|
71
|
-
# Yarn Integrity file
|
|
72
|
-
|
|
73
|
-
.yarn-integrity
|
|
74
|
-
|
|
75
|
-
# dotenv environment variables file
|
|
76
|
-
|
|
77
|
-
.env
|
|
78
|
-
.env.test
|
|
79
|
-
|
|
80
|
-
# parcel-bundler cache (https://parceljs.org/)
|
|
81
|
-
|
|
82
|
-
.cache
|
|
83
|
-
|
|
84
|
-
# next.js build output
|
|
85
|
-
|
|
86
|
-
.next
|
|
87
|
-
|
|
88
|
-
# nuxt.js build output
|
|
89
|
-
|
|
90
|
-
.nuxt
|
|
91
|
-
|
|
92
|
-
# vuepress build output
|
|
93
|
-
|
|
94
|
-
.vuepress/dist
|
|
95
|
-
|
|
96
|
-
# Serverless directories
|
|
97
|
-
|
|
98
|
-
.serverless/
|
|
99
|
-
|
|
100
|
-
# FuseBox cache
|
|
101
|
-
|
|
102
|
-
.fusebox/
|
|
103
|
-
|
|
104
|
-
# DynamoDB Local files
|
|
105
|
-
|
|
106
|
-
.dynamodb/
|
|
107
|
-
|
|
108
|
-
# Snyk Code
|
|
109
|
-
|
|
110
|
-
.dccache
|
package/template/src/main.js
DELETED
|
File without changes
|