From b7d5841d3a745e4645cfd3e1a9f06b4d3e6730e0 Mon Sep 17 00:00:00 2001 From: azu Date: Sat, 27 Jan 2024 07:10:04 +0900 Subject: [PATCH] v2.2.0 --- lerna.json | 6 +- packages/env/package.json | 124 +++++++++++------------ packages/node-localstorage/package.json | 126 ++++++++++++------------ 3 files changed, 127 insertions(+), 129 deletions(-) diff --git a/lerna.json b/lerna.json index 41c2e60..2e1c3f1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,4 @@ { - "packages": [ - "packages/*" - ], - "version": "2.1.5" + "packages": ["packages/*"], + "version": "2.2.0" } diff --git a/packages/env/package.json b/packages/env/package.json index 1de321b..49e7e43 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -1,64 +1,64 @@ { - "name": "@kvs/env", - "version": "2.1.5", - "description": "Universal Storage for KVS.", - "keywords": [ - "kvs", - "browser", - "env" - ], - "homepage": "https://github.com/azu/kvs/tree/master/packages/env/", - "bugs": { - "url": "https://github.com/azu/kvs/issues" - }, - "repository": { - "type": "git", - "url": "https://github.com/azu/kvs.git" - }, - "license": "MIT", - "author": "azu", - "sideEffects": false, - "main": "lib/node.js", - "module": "module/browser.js", - "types": "lib/node.d.ts", - "browser": "lib/browser.js", - "directories": { - "lib": "lib", - "test": "test" - }, - "files": [ - "bin/", - "lib/", - "module" - ], - "scripts": { - "build": "tsc -p . && tsc --project ./tsconfig.module.json", - "clean": "rimraf lib/ module/", - "prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", - "prepublishOnly": "npm run clean && npm run build", - "test": "mocha \"test/**/*.ts\"", - "watch": "tsc -p . --watch" - }, - "prettier": { - "printWidth": 120, - "singleQuote": false, - "tabWidth": 4, - "trailingComma": "none" - }, - "dependencies": { - "@kvs/indexeddb": "^2.1.4", - "@kvs/node-localstorage": "^2.1.5" - }, - "devDependencies": { - "@types/mocha": "^10.0.1", - "@types/node": "^20.4.2", - "mocha": "^10.2.0", - "prettier": "^3.0.0", - "rimraf": "^5.0.1", - "ts-loader": "^9.4.4", - "typescript": "^5.1.6" - }, - "publishConfig": { - "access": "public" - } + "name": "@kvs/env", + "version": "2.2.0", + "description": "Universal Storage for KVS.", + "keywords": [ + "kvs", + "browser", + "env" + ], + "homepage": "https://github.com/azu/kvs/tree/master/packages/env/", + "bugs": { + "url": "https://github.com/azu/kvs/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/azu/kvs.git" + }, + "license": "MIT", + "author": "azu", + "sideEffects": false, + "main": "lib/node.js", + "module": "module/browser.js", + "types": "lib/node.d.ts", + "browser": "lib/browser.js", + "directories": { + "lib": "lib", + "test": "test" + }, + "files": [ + "bin/", + "lib/", + "module" + ], + "scripts": { + "build": "tsc -p . && tsc --project ./tsconfig.module.json", + "clean": "rimraf lib/ module/", + "prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", + "prepublishOnly": "npm run clean && npm run build", + "test": "mocha \"test/**/*.ts\"", + "watch": "tsc -p . --watch" + }, + "prettier": { + "printWidth": 120, + "singleQuote": false, + "tabWidth": 4, + "trailingComma": "none" + }, + "dependencies": { + "@kvs/indexeddb": "^2.1.4", + "@kvs/node-localstorage": "^2.2.0" + }, + "devDependencies": { + "@types/mocha": "^10.0.1", + "@types/node": "^20.4.2", + "mocha": "^10.2.0", + "prettier": "^3.0.0", + "rimraf": "^5.0.1", + "ts-loader": "^9.4.4", + "typescript": "^5.1.6" + }, + "publishConfig": { + "access": "public" + } } diff --git a/packages/node-localstorage/package.json b/packages/node-localstorage/package.json index ce6d82a..9032367 100644 --- a/packages/node-localstorage/package.json +++ b/packages/node-localstorage/package.json @@ -1,65 +1,65 @@ { - "name": "@kvs/node-localstorage", - "version": "2.1.5", - "description": "Node.js localstorage for KVS.", - "keywords": [ - "kvs", - "browser", - "localstorage" - ], - "homepage": "https://github.com/azu/kvs/tree/master/packages/node-localstorage/", - "bugs": { - "url": "https://github.com/azu/kvs/issues" - }, - "repository": { - "type": "git", - "url": "https://github.com/azu/kvs.git" - }, - "license": "MIT", - "author": "azu", - "sideEffects": false, - "main": "lib/index.js", - "module": "module/index.js", - "types": "lib/index.d.ts", - "directories": { - "lib": "lib", - "test": "test" - }, - "files": [ - "bin/", - "lib/", - "module" - ], - "scripts": { - "build": "tsc -p . && tsc --project ./tsconfig.module.json", - "clean": "rimraf lib/ module/", - "prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", - "prepublishOnly": "npm run clean && npm run build", - "test": "mocha \"test/**/*.ts\"", - "watch": "tsc -p . --watch" - }, - "prettier": { - "printWidth": 120, - "singleQuote": false, - "tabWidth": 4, - "trailingComma": "none" - }, - "dependencies": { - "@kvs/storage": "^2.1.4", - "app-root-path": "^3.1.0", - "node-localstorage": "^2.1.6" - }, - "devDependencies": { - "@kvs/common-test-case": "^2.1.4", - "@types/mocha": "^10.0.1", - "@types/node": "^20.4.2", - "mocha": "^10.2.0", - "prettier": "^3.0.0", - "rimraf": "^5.0.1", - "ts-loader": "^9.4.4", - "typescript": "^5.1.6" - }, - "publishConfig": { - "access": "public" - } + "name": "@kvs/node-localstorage", + "version": "2.2.0", + "description": "Node.js localstorage for KVS.", + "keywords": [ + "kvs", + "browser", + "localstorage" + ], + "homepage": "https://github.com/azu/kvs/tree/master/packages/node-localstorage/", + "bugs": { + "url": "https://github.com/azu/kvs/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/azu/kvs.git" + }, + "license": "MIT", + "author": "azu", + "sideEffects": false, + "main": "lib/index.js", + "module": "module/index.js", + "types": "lib/index.d.ts", + "directories": { + "lib": "lib", + "test": "test" + }, + "files": [ + "bin/", + "lib/", + "module" + ], + "scripts": { + "build": "tsc -p . && tsc --project ./tsconfig.module.json", + "clean": "rimraf lib/ module/", + "prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", + "prepublishOnly": "npm run clean && npm run build", + "test": "mocha \"test/**/*.ts\"", + "watch": "tsc -p . --watch" + }, + "prettier": { + "printWidth": 120, + "singleQuote": false, + "tabWidth": 4, + "trailingComma": "none" + }, + "dependencies": { + "@kvs/storage": "^2.1.4", + "app-root-path": "^3.1.0", + "node-localstorage": "^2.1.6" + }, + "devDependencies": { + "@kvs/common-test-case": "^2.1.4", + "@types/mocha": "^10.0.1", + "@types/node": "^20.4.2", + "mocha": "^10.2.0", + "prettier": "^3.0.0", + "rimraf": "^5.0.1", + "ts-loader": "^9.4.4", + "typescript": "^5.1.6" + }, + "publishConfig": { + "access": "public" + } }