Skip to content

Commit 20c81d5

Browse files
committed
chore(custom): rename LICENSE
1 parent ddf4d34 commit 20c81d5

File tree

42 files changed

+6
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+6
-6
lines changed

.dumirc.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default defineConfig({
4141
'**/.gitignore',
4242
'**/.npmignore',
4343
'**/.DS_Store',
44-
'**/LICENSE.md',
44+
'**/LICENSE',
4545
'**/README.md',
4646
],
4747
},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

@cli/tidy-cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/dumlj/dumlj-build",
9-
"directory": "@cli/tidytsc-cli"
9+
"directory": "@cli/tidy-cli"
1010
},
1111
"license": "MIT",
1212
"scripts": {

@cli/tidy-cli/src/actions/deps.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export interface TidyDepsOptions {
3030
ignore?: string | string[]
3131
}
3232

33-
export const tidyDeps = async (options?: TidyDepsOptions) => {
33+
export async function tidyDeps(options?: TidyDepsOptions) {
3434
const {
3535
necessary: inNecessary = ['tslib', 'webpack-cli'],
3636
src: srcPattern = 'src/**',

@cli/tidy-cli/src/actions/readme.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export interface TidyReadmeOptions extends Omit<CompileWorkspaceOptions, 'config
1414
locals?: string[]
1515
}
1616

17-
export const tidyReadme = async (options?: TidyReadmeOptions) => {
17+
export async function tidyReadme(options?: TidyReadmeOptions) {
1818
const { locals: inLocals = [], output = 'README.md', config: configFile, template, cwd: inCwd, banner, include, exclude, paths } = options || {}
1919
const cwd = typeof inCwd === 'string' ? inCwd : (await findWorkspaceRootPath({ paths })) || process.cwd()
2020
const { locals = inLocals } = await resolveConfig<{ locals: string[] }>({ cwd, configFile })

@cli/tidy-cli/src/actions/tscfg.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface TidyTscfgOptions {
2727
exclude?: string | string[]
2828
}
2929

30-
export const tidyTscfg = async (options?: TidyTscfgOptions) => {
30+
export async function tidyTscfg(options?: TidyTscfgOptions) {
3131
const { tsconfig = './tsconfig.compile.json', output = 'tsconfig.build.json', paths, include: inInclude, exclude: inExclude } = options || {}
3232
const include = Array.isArray(inInclude) ? inInclude : typeof inInclude === 'string' ? [inInclude] : []
3333
const exclude = Array.isArray(inExclude) ? inExclude : typeof inExclude === 'string' ? [inExclude] : []
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

@webpack-plugin/stackblitz-webpack-plugin/__example__/webpack.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const CONFIG: Configuration = {
3737
'**/.gitignore',
3838
'**/.npmignore',
3939
'**/.DS_Store',
40-
'**/LICENSE.md',
40+
'**/LICENSE',
4141
'**/README.md',
4242
],
4343
}),

0 commit comments

Comments
 (0)