Skip to content

Commit

Permalink
refactor: changes in chore setup
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhadip committed Sep 11, 2022
1 parent 81911c0 commit 6c9326c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ dist/*.hot-update.json
dist/index.html
dist/webpack-stats.json
tests/
coverage/
coverage/
package/
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ dist-ssr
*.ntvs*
*.njsproj
*.sln
*.sw?
*.sw?
package/
9 changes: 8 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
{
"branches": ["master", "next", "main"]
"branches": ["master", "next", "main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/npm", {
"pkgRoot": "package"
}]
]
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "svelte-otp",
"version": "1.0.1",
"version": "1.0.3",
"description": "svelte Otp",
"type": "module",
"main": "./package",
"scripts": {
"dev": "vite",
"build:demo": "vite build",
Expand All @@ -17,7 +18,7 @@
"postcss-convert": "postcss package/*.css --replace && postcss package/**/*.css --replace ",
"build:lib": "npm run pkg:build && npm run postcss-convert",
"commit-message": "npm run commitlint -e -V",
"semantic-release:local": "npm run build:lib && yarn build:demo && semantic-release --no-ci",
"semantic-release:local": "npm run build:lib && npm build:demo && cd ./package semantic-release --no-ci",
"semantic-release": "semantic-release",
"test": "jest",
"test:watch": "npm run test -- --watch"
Expand Down

0 comments on commit 6c9326c

Please sign in to comment.