htmljs-parser 5.5.2 → 5.5.3

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/dist/index.js CHANGED
@@ -1626,7 +1626,13 @@ var unaryKeywords = [
1626
1626
  "typeof",
1627
1627
  "void"
1628
1628
  ];
1629
- var binaryKeywords = ["instanceof", "in", "as", "extends"];
1629
+ var binaryKeywords = [
1630
+ "instanceof",
1631
+ "in",
1632
+ "as",
1633
+ "extends",
1634
+ "satisfies"
1635
+ ];
1630
1636
  var EXPRESSION = {
1631
1637
  name: "EXPRESSION",
1632
1638
  enter(parent, start) {
package/dist/index.mjs CHANGED
@@ -1601,7 +1601,13 @@ var unaryKeywords = [
1601
1601
  "typeof",
1602
1602
  "void"
1603
1603
  ];
1604
- var binaryKeywords = ["instanceof", "in", "as", "extends"];
1604
+ var binaryKeywords = [
1605
+ "instanceof",
1606
+ "in",
1607
+ "as",
1608
+ "extends",
1609
+ "satisfies"
1610
+ ];
1605
1611
  var EXPRESSION = {
1606
1612
  name: "EXPRESSION",
1607
1613
  enter(parent, start) {
package/package.json CHANGED
@@ -1,31 +1,31 @@
1
1
  {
2
2
  "name": "htmljs-parser",
3
3
  "description": "An HTML parser recognizes content and string placeholders and allows JavaScript expressions as attribute values",
4
- "version": "5.5.2",
4
+ "version": "5.5.3",
5
5
  "devDependencies": {
6
6
  "@changesets/changelog-github": "^0.5.0",
7
7
  "@changesets/cli": "^2.27.1",
8
8
  "@types/degit": "^2.8.6",
9
9
  "@types/mocha": "^10.0.6",
10
- "@types/node": "^20.10.6",
11
- "@typescript-eslint/eslint-plugin": "^6.17.0",
12
- "@typescript-eslint/parser": "^6.17.0",
10
+ "@types/node": "^20.11.16",
11
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
12
+ "@typescript-eslint/parser": "^6.21.0",
13
13
  "cross-env": "^7.0.3",
14
14
  "degit": "^2.8.4",
15
- "esbuild": "0.19.11",
15
+ "esbuild": "0.20.0",
16
16
  "eslint": "^8.56.0",
17
17
  "eslint-config-prettier": "^9.1.0",
18
18
  "eslint-import-resolver-typescript": "^3.6.1",
19
19
  "eslint-plugin-import": "^2.29.1",
20
20
  "fast-glob": "^3.3.2",
21
21
  "fixpack": "^4.0.0",
22
- "husky": "^8.0.3",
23
- "lint-staged": "^15.2.0",
24
- "mitata": "^0.1.6",
22
+ "husky": "^9.0.10",
23
+ "lint-staged": "^15.2.2",
24
+ "mitata": "^0.1.8",
25
25
  "mocha": "^10.2.0",
26
26
  "mocha-snap": "^5.0.0",
27
27
  "nyc": "^15.1.0",
28
- "prettier": "^3.1.1",
28
+ "prettier": "^3.2.5",
29
29
  "tsx": "^4.7.0",
30
30
  "typescript": "^5.3.3"
31
31
  },
@@ -69,7 +69,7 @@
69
69
  "lint:eslint": "eslint -f visualstudio .",
70
70
  "lint:prettier": "prettier \"./**/*{.ts,.js,.json,.md,.yml,rc}\"",
71
71
  "mocha": "cross-env NODE_ENV=test mocha \"./src/**/__tests__/*.test.ts\"",
72
- "prepare": "husky install",
72
+ "prepare": "husky",
73
73
  "release": "npm run build && changeset publish",
74
74
  "report": "open ./coverage/lcov-report/index.html",
75
75
  "test": "npm run mocha -- --watch",