Skip to content

Commit

Permalink
version 0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kariminf committed May 30, 2021
1 parent 17d2b56 commit ba8fff6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
{
"name": "jslingua",
"version": "0.12.1",
"version": "0.12.2",
"description": "Language processing modules",
"main": "jslingua.js",
"main": "dist/jslingua.js",
"devDependencies": {
"codecov": "^3.6.5",
"eslint": "^4.19.1",
"expect.js": "^0.3.1",
"http-server": "^0.12.3",
"inchjs": "^0.4.1",
"istanbul": "^0.4.5",
"jshint": "^2.12.0",
"jslint": "^0.11.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"tui-jsdoc-template": "^1.2.2",
"uglify-es": "^3.3.10",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/mocha test/unit/"
"test": "nyc mocha test/unit/"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion src/jslingua.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class JsLingua {
static version = "0.12.1";
static version = "0.12.2";
static rtls = ["ara", "heb", "aze", "div", "kur", "per", "fas", "urd"];
static services = {};

Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
mode: 'development',
mode: 'production',
entry: "./package/jslingua-static.js",
output: {
filename: 'jslingua.js',
Expand Down

0 comments on commit ba8fff6

Please sign in to comment.