Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ dist-ssr
*.njsproj
*.sln
*.sw?

# Environment variables
.env
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "multiple-select-vanilla-demo",
"private": true,
"version": "0.1.0",
"version": "0.0.0",
"type": "module",
"author": {
"name": "zhixin wen",
Expand Down
19 changes: 19 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
"version": "0.0.0",
"npmClient": "pnpm",
"loglevel": "info",
"command": {
"version": {
"conventionalCommits": true,
"createRelease": "github",
"changelogIncludeCommitsClientLogin": " - by @%l",
"changelogHeaderMessage": "## Multiple-Select-Vanilla, visit the GitHub Page [multiple-select-vanilla](https://github.com/ghiscoding/multiple-select-vanilla)",
"message": "chore(release): publish new version %v",
"syncWorkspaceLock": true
}
},
"packages": [
"*"
]
}
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multiple-select-vanilla",
"version": "0.1.0",
"version": "0.0.0",
"type": "module",
"exports": {
".": {
Expand Down
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "multiple-select-root",
"private": true,
"version": "0.1.0",
"version": "0.0.0",
"author": {
"name": "zhixin wen",
"email": "wenzhixin2010@gmail.com",
Expand All @@ -26,9 +26,15 @@
"prettier:check": "prettier --check **/*.{js,ts,yml,json}",
"prettier:write": "prettier --write **/*.{js,ts,yml,json}",
"ci:lint": "eslint -c .eslintrc.json --no-eslintrc --ignore-path .gitignore",
"lint": "eslint -c .eslintrc.json --no-eslintrc --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint"
"lint": "eslint -c .eslintrc.json --no-eslintrc --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint",
"preview:version": "lerna version --no-private --dry-run",
"preview:publish": "lerna publish from-package --dry-run",
"new-version": "lerna version --no-private",
"new-publish": "lerna publish from-package",
"roll-new-release": "pnpm build && pnpm new-version && pnpm new-publish"
},
"devDependencies": {
"@lerna-lite/cli": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
Expand Down
Loading