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
2 changes: 1 addition & 1 deletion BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ python mini.py build/tmp/Glu-unified.lua build/Glu-min.lua

### `npm run build`

Runs the full build process (muddle + single + min)
Runs the full build process (muddy + single + min)

## Distribution Usage

Expand Down
2 changes: 0 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Copyright (C) 2026 by Brian M. Workman bmw@gesslar.dev

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.

Expand Down
2 changes: 1 addition & 1 deletion mfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": "Glu",
"title": "Lua class library for Mudlet",
"version": "2.1.0",
"version": "2.2.0",
"author": "gesslar",
"icon": "liquid-glue.png",
"dependencies": "",
Expand Down
53 changes: 42 additions & 11 deletions package-lock.json

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

17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "glu",
"version": "2.1.0",
"version": "2.2.0",
"description": "A modular utility library for Mudlet that just works. No fuss, no muss.",
"scripts": {
"build": "(\nset -e pipefail\nnpx @gesslar/muddy\nnpm run build:single\nnpm run build:min\nnpm run build:docs\nnpm run build:lib\n)",
"build": "npx -y @gesslar/muddy",
"build:single": "python unify.py src/scripts build/Glu-single.lua",
"build:min": "python unify.py src/scripts build/tmp/Glu-unified.lua && python mini.py build/tmp/Glu-unified.lua build/Glu-min.lua",
"build:docs": "npx bedoc --config bedoc/bedoc.yaml --sub docs",
Expand All @@ -12,10 +12,11 @@
"test": "docker run --rm -v \"$PWD\":/workspace gesslardev/mudlet-busted",
"test:tree": "docker run --rm -e BUSTED_OUTPUT=treeOutput -v \"$PWD\":/workspace gesslardev/mudlet-busted",
"docker:update": "docker pull gesslardev/mudlet-busted",
"major": "npx @gesslar/muddy version major",
"minor": "npx @gesslar/muddy version minor",
"patch": "npx @gesslar/muddy version patch",
"update": "npx npm-check-updates -u && npm install"
"watch": "npx -y @gesslar/muddy -w",
"major": "npx -y @gesslar/muddy version major --package && npm i",
"minor": "npx -y @gesslar/muddy version minor --package && npm i",
"patch": "npx -y @gesslar/muddy version patch --package && npm i",
"update": "npx -y npm-check-updates -u && npm install"
},
"keywords": [
"mudlet",
Expand All @@ -28,8 +29,8 @@
"license": "0BSD",
"devDependencies": {
"@gesslar/bedoc": "^2.1.3",
"@gesslar/muddy": "^2.2.3",
"@gesslar/toolkit": "^5.6.0"
"@gesslar/muddy": "^3.3.0",
"@gesslar/toolkit": "^5.9.1"
},
"files": [
"README.md",
Expand Down
Loading
Loading