Skip to content

Commit

Permalink
Release version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
YetAnotherClown committed Nov 26, 2024
1 parent eacaca2 commit bf7afe4
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions cli/package-lock.json

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

2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moonwave",
"version": "1.2.0",
"version": "1.2.1",
"description": "moonwave cli",
"main": "dist/index.js",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions cli/template/root/package-lock.json

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

2 changes: 1 addition & 1 deletion cli/template/root/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@mdx-js/react": "^3.0.1",
"clsx": "^2.1.1",
"docusaurus-lunr-search": "^3.4.0",
"docusaurus-plugin-moonwave": "^1.2.0",
"docusaurus-plugin-moonwave": "^1.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
Expand Down
4 changes: 2 additions & 2 deletions docusaurus-plugin-moonwave/package-lock.json

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

2 changes: 1 addition & 1 deletion docusaurus-plugin-moonwave/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docusaurus-plugin-moonwave",
"version": "1.2.0",
"version": "1.2.1",
"description": "Display your API docs generated from Moonwave in Docusaurus",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion extractor/Cargo.lock

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

2 changes: 1 addition & 1 deletion extractor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "moonwave"
description = "Moonwave is a tool for generating documentation from comments in Lua source code."
version = "1.2.0"
version = "1.2.1"
authors = ["eryn L. K. <[email protected]>"]
license = "MPL-2.0"
homepage = "https://eryn.io/moonwave/"
Expand Down
6 changes: 3 additions & 3 deletions scripts/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ const run = (cwd, command) =>
stdio: "inherit",
})

if (execSync("git status --short --porcelain").toString().length > 0) {
/*if (execSync("git status --short --porcelain").toString().length > 0) {
console.error("Please commit all changes before running this command")
process.exit(1)
}
}*/

updatePackageJsonVersion("cli/package.json")
run("cli", "npm i --package-lock-only")
Expand All @@ -63,7 +63,7 @@ replaceInFile(
`version = "${version}"`
)

run("docusaurus-plugin-moonwave", "npm publish")
//run("docusaurus-plugin-moonwave", "npm publish")

run("cli/template/root", "npm i --package-lock-only")
run("extractor", "cargo check")
Expand Down

0 comments on commit bf7afe4

Please sign in to comment.