Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ITProKyle committed Nov 8, 2023
1 parent 5a71249 commit 2b0b577
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
**/.envrc
**/.secrets
**/.venv/
**/dist/
**/node_modules
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ help: ## show this message
$(MAKEFILE_LIST)

build:
@npm run build
@npm run-script build

fix: run-pre-commit ## run all fixes

Expand All @@ -25,6 +25,14 @@ fix-sort: ## automatically sort the contents of some files
lint: ## run all linters
@echo "no linters configured"

pack: build test ## create a tarball from the package
@rm -rf ./dist
@mkdir -p ./dist
@npm pack --pack-destination dist

publish: pack ## publish the package
@find ./dist -name '*-cspell-dict-*.*.*.tgz' -exec npm publish --access public {} +;

run-pre-commit: ## run pre-commit for all files
@poetry run pre-commit run $(PRE_COMMIT_OPTS) \
--all-files \
Expand Down Expand Up @@ -58,4 +66,4 @@ spellcheck: ## run cspell
--show-context

test: ## run tests
@echo "no tests configured"
@npm run-script test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
"build": "cspell-tools compile \"finley.txt\" -o .",
"test": "head -n 100 \"finley.txt\" | cspell -v -c ./cspell-ext.json \"--local=*\" \"--languageId=finley\" stdin"
},
"version": "1.0.0"
"version": "1.0.1"
}

0 comments on commit 2b0b577

Please sign in to comment.