@makefully/adaptfully 3.8.2 → 3.9.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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project are documented in this file.
4
4
 
5
+ ## 3.9.0 — 2026-07-15
6
+
7
+ ### Added
8
+
9
+ - **`pwa` Wrapfully family** — `resolveFamilyFromTarget('pwa')` / `resolveBuildSpec` return family `pwa` when `builder: "pwa"`, including with `packager: "web"`.
10
+
5
11
  ## 3.8.2 — 2026-07-14
6
12
 
7
13
  ### Fixed
@@ -355,6 +355,9 @@ export function resolveFamilyFromTarget(target) {
355
355
  if (CORDOVA_TARGETS.has(target)) {
356
356
  return 'cordova';
357
357
  }
358
+ if (target === 'pwa') {
359
+ return 'pwa';
360
+ }
358
361
  if (target === 'webapp' || target === 'web') {
359
362
  return 'webapp';
360
363
  }
@@ -369,6 +372,10 @@ export function resolveFamilyFromTarget(target) {
369
372
  * @param {string} [packager]
370
373
  */
371
374
  export function resolveFamily(targets, packager) {
375
+ if (targets.length === 1 && targets[0] === 'pwa') {
376
+ return 'pwa';
377
+ }
378
+
372
379
  if (packager === 'electron') {
373
380
  return 'electron';
374
381
  }
@@ -382,7 +389,7 @@ export function resolveFamily(targets, packager) {
382
389
  return families[0];
383
390
  }
384
391
 
385
- if (targets.length === 1 && targets[0] === 'webapp') {
392
+ if (targets.length === 1 && (targets[0] === 'webapp' || targets[0] === 'web')) {
386
393
  return 'webapp';
387
394
  }
388
395
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makefully/adaptfully",
3
- "version": "3.8.2",
3
+ "version": "3.9.0",
4
4
  "description": "Platform abstraction and Wrapfully deploy client for Makefully games",
5
5
  "type": "module",
6
6
  "main": "./lib/node/index.js",