We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d2eba commit f82cd9aCopy full SHA for f82cd9a
3 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "strc",
3
- "version": "2.0.3",
+ "version": "2.0.4",
4
"description": "JavaScript String Compressor - lossless string compression algorithm",
5
"main": "index.js",
6
"repository": {
rollup.config.js
@@ -18,5 +18,8 @@ export default {
18
format: 'umd',
19
name: 'JSSC'
20
}
21
+ ],
22
+ external: [
23
+ 'justc'
24
]
25
src/index.js
@@ -1,4 +1,4 @@
-const JUSTC = require('justc');
+import JUSTC from 'justc';
const name__ = 'JSSC';
const prefix = name__+': ';
0 commit comments