Skip to content

Commit

Permalink
fix: style script
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdel-Monaam-Aouini committed Mar 17, 2023
1 parent d4371ba commit d7fe94a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"style": "standard --fix"
"style": "standard src/**/*.js --fix"
},
"eslintConfig": {
"extends": [
Expand Down
36 changes: 18 additions & 18 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
module.exports = {
branches: ["master"],
branches: ['master'],
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
"@semantic-release/changelog",
'@semantic-release/changelog',
{
changelogFile: "CHANGELOG.md",
},
changelogFile: 'CHANGELOG.md'
}
],
"@semantic-release/npm",
"@semantic-release/github",
'@semantic-release/npm',
'@semantic-release/github',
[
"@semantic-release/git",
'@semantic-release/git',
{
assets: [
"CHANGELOG.md",
"dist/**",
"package.json",
"package-lock.json",
'CHANGELOG.md',
'dist/**',
'package.json',
'package-lock.json'
],
message:
"chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
],
],
};
'chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
}
]
]
}
3 changes: 1 addition & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ export default defineConfig({
cacheDir: '.vite',
build: {
target: 'esnext'
},
base: 'https://abdel-monaam-aouini.github.io/dashboard-kit/'
}
})

0 comments on commit d7fe94a

Please sign in to comment.