Skip to content

Commit f82cd9a

Browse files
committed
Updates
1 parent 85d2eba commit f82cd9a

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "strc",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "JavaScript String Compressor - lossless string compression algorithm",
55
"main": "index.js",
66
"repository": {

rollup.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@ export default {
1818
format: 'umd',
1919
name: 'JSSC'
2020
}
21+
],
22+
external: [
23+
'justc'
2124
]
2225
}

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const JUSTC = require('justc');
1+
import JUSTC from 'justc';
22

33
const name__ = 'JSSC';
44
const prefix = name__+': ';

0 commit comments

Comments
 (0)