Skip to content

Commit 6b10cf1

Browse files
committed
add npm publish scripts
1 parent a76f3b9 commit 6b10cf1

File tree

4 files changed

+3
-31
lines changed

4 files changed

+3
-31
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This utility provides a simple yet effective Finite State Machine implementation
44
## Status
55
Production - [Version 1.0.0](https://github.com/PureMVC/puremvc-typescript-util-statemachine/blob/master/VERSION)
66

7+
78
## Platforms / Technologies
89
* [Typescript](http://en.wikipedia.org/wiki/Typescript)
910

VERSION

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ Release Date: 4/13/25
66
Revision: 0
77
Minor: 0
88
Authors: Cliff Hall <[email protected]>
9-
: Neil Manuell <[email protected]>
109
--------------------------------------------------------------------------
1110

1211
1.0.0 Initial port from the AS3 source.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"npm:publish": "npm publish --access public",
3535
"typecheck": "tsc --noEmit -p tsconfig.json --composite false",
3636
"build:lib": "npm run build:cjs && npm run build:esm",
37-
"build:esm": "tsc --module esnext --outDir bin/esm && echo '{\"type\": \"module\"}' > bin/esm/package.json",
38-
"build:cjs": "tsc --module commonjs --outDir bin/cjs && echo '{\"type\": \"commonjs\"}' > bin/cjs/package.json",
37+
"build:esm": "tsc --module esnext --outDir bin/esm && echo '{\"type\": \"module\"}' > bin/esm/package.json && rm -rf bin/esm/interfaces",
38+
"build:cjs": "tsc --module commonjs --outDir bin/cjs && echo '{\"type\": \"commonjs\"}' > bin/cjs/package.json && rm -rf bin/cjs/interfaces",
3939
"build:doc": "typedoc",
4040
"clean": "rm -rf bin"
4141

porting_plan.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)