openchemlib 9.4.1 → 9.5.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/dist/openchemlib.d.ts +10 -0
- package/dist/openchemlib.debug.js +51 -12
- package/dist/openchemlib.js +8 -8
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openchemlib",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.5.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Manipulate molecules",
|
|
6
6
|
"keywords": [
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"eslint-fix": "npm run eslint -- --fix",
|
|
29
29
|
"prettier": "prettier --check .",
|
|
30
30
|
"prettier-write": "prettier --write .",
|
|
31
|
-
"test": "npm run build && npm run test-
|
|
31
|
+
"test": "npm run build && npm run test-no-build",
|
|
32
|
+
"test-no-build": "npm run test-only && npm run check-types && npm run eslint && npm run prettier",
|
|
32
33
|
"test-only": "vitest run",
|
|
33
34
|
"vite": "vite --open",
|
|
34
35
|
"vite-build": "vite build",
|