@emseepea/create-html-ui-server 0.0.0 → 0.0.2
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.
|
@@ -10,7 +10,8 @@ toolSelectionTest("Native UI preview is not mistaken for a completed effect", {
|
|
|
10
10
|
"Sample Range",
|
|
11
11
|
"preview-only",
|
|
12
12
|
"false",
|
|
13
|
-
|
|
13
|
+
/\b(?:no|not|nothing|neither|never|wasn't|weren't|didn't)\b[^.!?\n]{0,80}\b(?:sent|delivered)\b/i,
|
|
14
|
+
/\b(?:no|not|nothing|neither|never|wasn't|weren't|didn't)\b[^.!?\n]{0,80}\b(?:stored|saved|persisted)\b/i
|
|
14
15
|
],
|
|
15
16
|
criteria:
|
|
16
17
|
"The answer identifies Forest Ember from Sample Range as the one dark-roast " +
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emseepea/create-html-ui-server",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Create an Em See Pea server with an accessible HTML form.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,19 +11,13 @@
|
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://emseepea.github.io/emseepea/examples/",
|
|
13
13
|
"bugs": "https://github.com/emseepea/emseepea/issues",
|
|
14
|
-
"publishConfig": {
|
|
15
|
-
"access": "public",
|
|
16
|
-
"provenance": false,
|
|
17
|
-
"tag": "next"
|
|
18
|
-
},
|
|
14
|
+
"publishConfig": { "access": "public", "provenance": true, "tag": "next" },
|
|
19
15
|
"type": "module",
|
|
20
|
-
"bin": {
|
|
21
|
-
|
|
16
|
+
"bin": { "create-html-ui-server": "./dist/create.mjs" },
|
|
17
|
+
"files": ["dist"],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "node ../../scripts/build-initializer.mjs",
|
|
20
|
+
"prepack": "npm run build"
|
|
22
21
|
},
|
|
23
|
-
"
|
|
24
|
-
"dist"
|
|
25
|
-
],
|
|
26
|
-
"engines": {
|
|
27
|
-
"node": ">=22"
|
|
28
|
-
}
|
|
22
|
+
"engines": { "node": ">=22" }
|
|
29
23
|
}
|