@datagrok/peptides 1.27.9 → 1.27.10
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 +7 -0
- package/CLAUDE.md +1 -0
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +8 -8
- package/src/package-api.ts +7 -0
- package/src/package.g.ts +10 -0
- package/src/package.ts +13 -0
- package/src/tests/viewers.ts +56 -0
- package/src/viewers/peptide-generation-viewer.ts +745 -0
- package/test-console-output-1.log +92 -111
- package/test-record-1.mp4 +0 -0
- package/tsconfig.json +2 -1
package/test-record-1.mp4
CHANGED
|
Binary file
|
package/tsconfig.json
CHANGED
|
@@ -67,5 +67,6 @@
|
|
|
67
67
|
/* Advanced Options */
|
|
68
68
|
"skipLibCheck": true, /* Skip type checking of declaration files. */
|
|
69
69
|
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
|
|
70
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"exclude": ["node_modules", "playwright"]
|
|
71
72
|
}
|