Comparing version 1.2.1 to 1.3.0
{ | ||
"name": "ilib-env", | ||
"version": "1.2.1", | ||
"version": "1.3.0", | ||
"main": "./lib/index.js", | ||
"module": "./src/index.js", | ||
"description": "Common environment detection functions for ilib. iLib is a cross-engine library of internationalization (i18n) classes written in pure JS", | ||
@@ -55,5 +56,7 @@ "keywords": [ | ||
"build:test": "webpack-cli --config webpack-test.config.js", | ||
"dist": "npm run doc ; npm run build:prod ; npm run build:web; npm pack", | ||
"test": "LANG=en_US.UTF8 npm run build:dev ; node test/testSuite.js", | ||
"testall": "LANG=en_US.UTF8 npm run test; npm run build:test ; open-cli ./test/testSuite.html ; open-cli ./test/testSuite.html -- firefox", | ||
"dist": "npm-run-all doc build:prod build:web; npm pack", | ||
"test": "npm run test:cli", | ||
"test:cli": "LANG=en_US.UTF8 npm run build:dev ; node test/testSuite.js", | ||
"test:web": "LANG=en_US.UTF8 npm run build:test ; open-cli ./test/testSuite.html ; open-cli ./test/testSuite.html -- firefox", | ||
"test:all": "npm-run-all test:cli test:web", | ||
"debug": "npm run build:dev ; node --inspect-brk test/testSuite.js", | ||
@@ -65,6 +68,6 @@ "clean": "git clean -f -d * ; rm -rf lib", | ||
"devDependencies": { | ||
"@babel/core": "^7.17.10", | ||
"@babel/preset-env": "^7.17.10", | ||
"@babel/core": "^7.18.5", | ||
"@babel/preset-env": "^7.18.2", | ||
"@babel/register": "^7.17.7", | ||
"@babel/runtime": "^7.17.9", | ||
"@babel/runtime": "^7.18.3", | ||
"acorn": "^8.7.1", | ||
@@ -75,2 +78,3 @@ "acorn-jsx": "^5.3.2", | ||
"babel-plugin-add-module-exports": "^1.0.4", | ||
"core-js": "^3.23.2", | ||
"docdash": "^1.2.0", | ||
@@ -88,9 +92,7 @@ "grunt": "^1.5.3", | ||
"nodeunit": "^0.11.3", | ||
"npm-run-all": "^4.1.5", | ||
"open-cli": "^7.0.1", | ||
"webpack": "^5.72.1", | ||
"webpack-cli": "^4.9.2" | ||
}, | ||
"dependencies": { | ||
"core-js": "^3.22.5" | ||
"webpack": "^5.73.0", | ||
"webpack-cli": "^4.10.0" | ||
} | ||
} |
@@ -206,2 +206,8 @@ # ilib-env | ||
### v1.3.0 | ||
* Now ships both the ES6 modules in the src directory and the commonjs code | ||
(transpiled with babel) in the lib directory. Callers can choose which one | ||
they would like to use. | ||
### v1.2.1 | ||
@@ -208,0 +214,0 @@ |
Sorry, the diff of this file is not supported yet
0
262
87876
26
- Removedcore-js@^3.22.5
- Removedcore-js@3.40.0(transitive)