Skip to content

Commit f339bd5

Browse files
committed
fix: still didn't find the problem
1 parent a7b95ac commit f339bd5

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

packages/vue-quill/src/assets/snow.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ backgroundColor = #fff
55
inactiveColor = #4B5563
66
shadowColor = #D1D5DB
77
textColor = #4B5563
8-
// Additional color
8+
// Additional colors
99
backgroundHoverColor = #F3F4F6
1010
backgroundActiveColor = #DBEAFE
1111

scripts/release.ts

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@
5151
await release()
5252
}
5353

54-
async function prepare(target: string/*, nextVersion: string*/) {
55-
try {
56-
// const buildScript = path.resolve(__dirname, 'build.ts')
57-
// console.log(chalk.bgCyan("Build package"))
58-
// execa.sync('npx', ['ts-node', buildScript, '--nextVersion', nextVersion])
59-
console.log(chalk.bgCyan("Zipping distribution file"))
60-
execa.sync('zip', ['-r', `${target}-dist.zip`, '.', '-i', 'dist'])
61-
} catch (err) {
62-
console.log(`>>>>>>>>>>>>> ${err}`)
63-
}
64-
}
54+
// async function prepare(target: string/*, nextVersion: string*/) {
55+
// try {
56+
// // const buildScript = path.resolve(__dirname, 'build.ts')
57+
// // console.log(chalk.bgCyan("Build package"))
58+
// // execa.sync('npx', ['ts-node', buildScript, '--nextVersion', nextVersion])
59+
// console.log(chalk.bgCyan("Zipping distribution file"))
60+
// execa.sync('zip', ['-r', `${target}-dist.zip`, '.', '-i', 'dist'])
61+
// } catch (err) {
62+
// console.log(`>>>>>>>>>>>>> ${err}`)
63+
// }
64+
// }
6565

6666
async function release() {
6767
try {
@@ -108,28 +108,28 @@
108108
}
109109
}
110110

111-
async function getNextVersion(): Promise<string> {
112-
try {
113-
const { nextRelease } = await semanticRelease({
114-
branches: releaserc.branches,
115-
repositoryUrl: pkg.repository.url,
116-
dryRun: true,
117-
ci: false,
118-
plugins: [
119-
'@semantic-release/commit-analyzer',
120-
[
121-
"@semantic-release/exec",
122-
{
123-
prepareCmd: "npx ts-node ../../scripts/build.ts --nextVersion ${nextRelease.version}"
124-
}
125-
]
126-
]
127-
})
128-
if (nextRelease) return nextRelease.version
129-
else console.log('No release will bepublished')
130-
} catch (err) {
131-
console.error('Failed to retrieve next version with %O', err)
132-
}
133-
return pkg.version
134-
}
111+
// async function getNextVersion(): Promise<string> {
112+
// try {
113+
// const { nextRelease } = await semanticRelease({
114+
// branches: releaserc.branches,
115+
// repositoryUrl: pkg.repository.url,
116+
// dryRun: true,
117+
// ci: false,
118+
// plugins: [
119+
// '@semantic-release/commit-analyzer',
120+
// [
121+
// "@semantic-release/exec",
122+
// {
123+
// prepareCmd: "npx ts-node ../../scripts/build.ts --nextVersion ${nextRelease.version}"
124+
// }
125+
// ]
126+
// ]
127+
// })
128+
// if (nextRelease) return nextRelease.version
129+
// else console.log('No release will bepublished')
130+
// } catch (err) {
131+
// console.error('Failed to retrieve next version with %O', err)
132+
// }
133+
// return pkg.version
134+
// }
135135
})()

0 commit comments

Comments
 (0)