Skip to content

Commit

Permalink
Pre-publish 4
Browse files Browse the repository at this point in the history
  • Loading branch information
dakln committed Oct 16, 2024
1 parent 6928ce6 commit bd36d65
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
src/
lost.config.ts
deno.lock
tsconfig.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Here I've compiled some of the benefits from standard addon creation for __Const
# 🚀 Quickstart

- __Install [Deno (JavaScript runtime)](https://docs.deno.com/runtime/)__
- __Install [Lost CLI](https://jsr.io/@lost-c3/[email protected]) by using `deno install --name lost jsr:@lost-c3/cli@2.0.1 --global -f -A`__
- __Install [Lost CLI](https://jsr.io/@lost-c3/lib) by using `deno install --name lost jsr:@lost-c3/lib@1.0.0/cli --global -f -A`__
- __Create empty folder which will be used as main folder for your addon.__
- __Create a bare-bones for ***"plugin"*** addon type by using `lost create --plugin` OR `lost create -p`__

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lost-c3/lib",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./mod.ts",
"./cli": "./cli.ts"
Expand Down
4 changes: 4 additions & 0 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* This module contains functions AND classes to create Construct 3 Addons.
* @module
*/
/**
* Entities
*/
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"bin": "cli.ts",
"publish": {
"include": ["mod.ts", "cli.ts", "./lib/", "./cli/"],
"exclude": ["./cli/src/", "tsconfig.json", "./cli/plugin_base/src"]
"exclude": [
"./cli/src/",
"tsconfig.json",
"./cli/plugin_base/src",
".github"
]
}
}

0 comments on commit bd36d65

Please sign in to comment.