symfony-expression-editor 0.1.0 → 0.1.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/README.md CHANGED
@@ -14,7 +14,7 @@ Configuring CodeMirror and making it blend into UI can be tricky
14
14
 
15
15
  ```html
16
16
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
17
- <script type="module" src="https://cdn.jsdelivr.net/npm/symfony-expression-editor@1.0.0/+esm"></script>
17
+ <script type="module" src="https://esm.sh/symfony-expression-editor"></script>
18
18
  <textarea class="form-control" is="expression-editor" rows="1">'foobar' starts with 'foo'</textarea>
19
19
  ```
20
20
 
package/example.html CHANGED
@@ -18,7 +18,7 @@
18
18
  "w3c-keyname": "https://esm.sh/*w3c-keyname@2.2.8",
19
19
  "crelt": "https://esm.sh/*crelt@1.0.6",
20
20
  "@marijn/find-cluster-break": "https://esm.sh/*@marijn/find-cluster-break@1.0.2",
21
- "@valtzu/codemirror-lang-el": "https://esm.sh/*@valtzu/codemirror-lang-el@0.10.0"
21
+ "@valtzu/codemirror-lang-el": "https://esm.sh/*@valtzu/codemirror-lang-el@1.0.0"
22
22
  }
23
23
  }
24
24
  </script>
package/package.json CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "name": "symfony-expression-editor",
3
- "version": "0.1.0",
4
3
  "main": "./dist/index.cjs",
5
4
  "module": "./dist/index.mjs",
6
5
  "types": "./dist/index.d.cts",
@@ -28,12 +27,11 @@
28
27
  "@codemirror/state": "^6.5.2",
29
28
  "@codemirror/view": "^6.36.3",
30
29
  "@lezer/highlight": "^1.2.1",
31
- "@valtzu/codemirror-lang-el": "^0.10.0",
30
+ "@valtzu/codemirror-lang-el": "^1.0.0",
32
31
  "codemirror": "^6.0.1"
33
32
  },
34
33
  "devDependencies": {
35
34
  "pkgroll": "^2.11.2",
36
- "tsx": "^4.19.3",
37
35
  "typescript": "^5.8.2"
38
36
  },
39
37
  "license": "MIT",
@@ -44,5 +42,6 @@
44
42
  "publishConfig": {
45
43
  "access": "public",
46
44
  "registry": "https://registry.npmjs.org/"
47
- }
45
+ },
46
+ "version": "0.1.1"
48
47
  }