Skip to content

Commit ea44752

Browse files
author
sanex3339
committed
Version update to 0.18.3. Usage of pm2
1 parent ef84718 commit ea44752

File tree

4 files changed

+983
-27
lines changed

4 files changed

+983
-27
lines changed

ecosystem.config.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
apps : [{
3+
name: 'javascript-obfuscator-ui',
4+
script: 'server.js',
5+
instances: 1,
6+
autorestart: true,
7+
watch: false,
8+
max_memory_restart: '1G'
9+
}]
10+
};

package.json

+11-16
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "javascript-obfuscator-web",
3-
"version": "1.3.2",
3+
"version": "2.0.0",
44
"description": "",
5-
"main": "server.js",
65
"engines": {
76
"node": ">=6.3.1"
87
},
98
"scripts": {
10-
"start": "node server.js",
9+
"start": "pm2 restart ecosystem.config.js",
10+
"stop": "pm2 delete ecosystem.config.js",
1111
"webpack:dev": "webpack --mode development --config webpack.conf.js --watch --color --progress",
1212
"webpack:prod": "NODE_ENV=production webpack --mode production --config webpack.conf.js --devtool source-map --progress --optimize-minimize",
1313
"postinstall": "npm run updatesemantic && npm run webpack:prod",
@@ -19,10 +19,17 @@
1919
"body-parser": "1.15.2",
2020
"classnames": "2.2.5",
2121
"codemirror": "5.18.2",
22+
"css-loader": "0.28.11",
23+
"eslint": "4.19.1",
24+
"eslint-plugin-react": "7.7.0",
2225
"express": "4.14.0",
26+
"extract-text-webpack-plugin": "4.0.0-beta.0",
2327
"graceful-fs": "4.1.9",
2428
"inert": "5.1.0",
25-
"javascript-obfuscator": "0.18.3",
29+
"javascript-obfuscator": "0.18.4",
30+
"less": "2.7.1",
31+
"less-loader": "4.1.0",
32+
"pm2": "^4.1.2",
2633
"prop-types": "15.6.1",
2734
"react": "16.3.0",
2835
"react-codemirror2": "5.0.1",
@@ -35,18 +42,6 @@
3542
"redux-thunk": "2.1.0",
3643
"semantic-ui-less": "2.3.1",
3744
"semantic-ui-react": "0.79.0",
38-
"babel-core": "6.14.0",
39-
"babel-eslint": "8.2.2",
40-
"babel-loader": "7.1.4",
41-
"babel-preset-es2015": "6.14.0",
42-
"babel-preset-react": "6.11.1",
43-
"babel-preset-stage-0": "6.5.0",
44-
"css-loader": "0.28.11",
45-
"eslint": "4.19.1",
46-
"eslint-plugin-react": "7.7.0",
47-
"extract-text-webpack-plugin": "4.0.0-beta.0",
48-
"less": "2.7.1",
49-
"less-loader": "4.1.0",
5045
"style-loader": "0.20.3",
5146
"url-loader": "1.0.1",
5247
"webpack": "4.4.1",

templates/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h1>JavaScript Obfuscator Tool</h1>
4949
<p>
5050
A free and efficient obfuscator for JavaScript (including ES2017). Make your code harder to copy and
5151
prevent people from stealing your work. This tool is a Web UI to the excellent (and open source)
52-
<code><a href="https://github.com/javascript-obfuscator/javascript-obfuscator" target="_new">javascript-obfuscator</a>@0.18.3</code>
52+
<code><a href="https://github.com/javascript-obfuscator/javascript-obfuscator" target="_new">javascript-obfuscator</a>@0.18.4</code>
5353
created by Timofey Kachalov.
5454
</p>
5555
<div id="GithubBadges">

0 commit comments

Comments
 (0)