@vsirotin/ts-stop 1.13.0 → 1.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsirotin/ts-stop",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "State Oriented Programming library for TypeScript",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -20,7 +20,10 @@
20
20
  },
21
21
  "files": [
22
22
  "lib",
23
- "scripts",
23
+ "scripts/reduce-fa.js",
24
+ "scripts/merge-fas.js",
25
+ "scripts/merge-fas-from-dir.js",
26
+ "scripts/update-fa.js",
24
27
  "README.md",
25
28
  "LICENSE",
26
29
  "LICENSE-COMMERCIAL.md"
@@ -39,7 +42,6 @@
39
42
  "test": "jest",
40
43
  "test:coverage": "jest --coverage",
41
44
  "clean": "rm -rf lib coverage",
42
- "publish:local": "./scripts/publish-local.sh",
43
45
  "pack": "npm run build && npm pack",
44
46
  "reduce-fa": "node scripts/reduce-fa.js",
45
47
  "merge-fas": "node scripts/merge-fas.js",
@@ -1,15 +0,0 @@
1
- #!/bin/bash
2
- set -e
3
-
4
- echo "📦 Publishing ts-stop locally..."
5
-
6
- # Build
7
- npm run build
8
-
9
- # Copy to ts-stop node_modules so the test suite can import @vsirotin/ts-stop
10
- echo "📋 Installing to ts-stop node_modules..."
11
- rm -rf node_modules/@vsirotin/ts-stop
12
- mkdir -p node_modules/@vsirotin/ts-stop
13
- cp -r lib package.json README.md LICENSE node_modules/@vsirotin/ts-stop/
14
-
15
- echo "✅ Local publishing completed!"