Skip to content

Commit ba8fff6

Browse files
committed
version 0.12.2
1 parent 17d2b56 commit ba8fff6

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
{
22
"name": "jslingua",
3-
"version": "0.12.1",
3+
"version": "0.12.2",
44
"description": "Language processing modules",
5-
"main": "jslingua.js",
5+
"main": "dist/jslingua.js",
66
"devDependencies": {
77
"codecov": "^3.6.5",
88
"eslint": "^4.19.1",
99
"expect.js": "^0.3.1",
1010
"http-server": "^0.12.3",
11-
"inchjs": "^0.4.1",
12-
"istanbul": "^0.4.5",
1311
"jshint": "^2.12.0",
1412
"jslint": "^0.11.0",
1513
"mocha": "^8.4.0",
14+
"nyc": "^15.1.0",
1615
"tui-jsdoc-template": "^1.2.2",
17-
"uglify-es": "^3.3.10",
1816
"webpack": "^5.38.1",
1917
"webpack-cli": "^4.7.0"
2018
},
2119
"scripts": {
22-
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/mocha test/unit/"
20+
"test": "nyc mocha test/unit/"
2321
},
2422
"publishConfig": {
2523
"access": "public"

src/jslingua.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class JsLingua {
2-
static version = "0.12.1";
2+
static version = "0.12.2";
33
static rtls = ["ara", "heb", "aze", "div", "kur", "per", "fas", "urd"];
44
static services = {};
55

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
mode: 'development',
2+
mode: 'production',
33
entry: "./package/jslingua-static.js",
44
output: {
55
filename: 'jslingua.js',

0 commit comments

Comments
 (0)