jspurefix 5.6.1 → 5.8.0
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/DEMO_PORT_PLAN.md +1 -1
- package/README.md +256 -587
- package/dist/runtime/session-launcher.d.ts +2 -0
- package/dist/runtime/session-launcher.js +14 -0
- package/dist/runtime/session-launcher.js.map +1 -1
- package/dist/transport/ascii/ascii-session.d.ts +1 -0
- package/dist/transport/ascii/ascii-session.js +19 -0
- package/dist/transport/ascii/ascii-session.js.map +1 -1
- package/dist/transport/http/http-acceptor.js +2 -2
- package/dist/transport/http/http-acceptor.js.map +1 -1
- package/dist/transport/session/fix-session.d.ts +1 -0
- package/dist/transport/session/fix-session.js +7 -0
- package/dist/transport/session/fix-session.js.map +1 -1
- package/jsfix.test_client.txt +75 -71
- package/jsfix.test_server.txt +72 -68
- package/package.json +2 -4
- package/src/runtime/session-launcher.ts +18 -0
- package/src/transport/ascii/ascii-session.ts +20 -0
- package/src/transport/http/http-acceptor.ts +2 -2
- package/src/transport/session/fix-session.ts +14 -0
- package/src/util/unzip.js +54 -184
package/DEMO_PORT_PLAN.md
CHANGED
|
@@ -76,7 +76,7 @@ The good news: many of the underlying engine bugs are already fixed in jspurefix
|
|
|
76
76
|
|------|--------|
|
|
77
77
|
| `package.json` | Bump `jspurefix` dependency to `^5.5.0`. Remove unused deps (`request`, `typings`). Add a real `test` script. |
|
|
78
78
|
| `README.md` | Replace 3-line badge-only README with a basic intro that says what the demo does. Add "build / run" section. |
|
|
79
|
-
| `.travis.yml` | Remove (Travis
|
|
79
|
+
| `.travis.yml` | Remove (Travis and AppVeyor are gone, GitHub Actions covers CI). Drop `appveyor.yml` too if present. |
|
|
80
80
|
| `tslint.json` | Remove (eslint is the canonical linter now). |
|
|
81
81
|
|
|
82
82
|
**Risk**: None. New deps and docs only.
|