Skip to content

Commit 2c8eb85

Browse files
committed
jspython-interpreter minimized version #188
1 parent 42de5f7 commit 2c8eb85

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<title>JSPython dev</title>
55
<script src="./node_modules/ace-builds/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
6-
<script src="./dist/jspython.js"></script>
6+
<script src="./dist/jspython-interpreter.js"></script>
77
<script src="./dist/assets/mode-jspython.js"></script>
88
<style>
99
.container {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"evaluator",
99
"parser"
1010
],
11-
"main": "dist/jspython.umd.js",
12-
"module": "dist/jspython.esm.js",
11+
"main": "dist/jspython-interpreter.min.js",
12+
"module": "dist/jspython-interpreter.esm.js",
1313
"typings": "dist/interpreter.d.ts",
1414
"files": [
1515
"dist"

rollup.config.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
input: 'src/interpreter.ts',
88
output: {
99
name: 'jspython',
10-
file: 'dist/jspython.js',
10+
file: 'dist/jspython-interpreter.js',
1111
format: 'umd',
1212
sourcemap: true,
1313
globals: {}

0 commit comments

Comments
 (0)