From 4f9433647ed9e9844a230895482777a954d2aa4d Mon Sep 17 00:00:00 2001 From: jaywcjlove <398188662@qq.com> Date: Tue, 3 Oct 2023 03:34:20 +0800 Subject: [PATCH] released v1.1.1 --- core/package.json | 2 +- examples/bundle-node/package.json | 4 ++-- examples/bundle/package.json | 4 ++-- examples/github-action/package.json | 2 +- lerna.json | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/core/package.json b/core/package.json index f124007..4036dbb 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@kkt/ncc", - "version": "1.1.0", + "version": "1.1.1", "description": "Simple CLI for compiling a Node.js module into a single file, together with all its dependencies, gcc-style.", "author": "Kenny Wong (https://github.com/jaywcjlove)", "homepage": "https://kktjs.github.io/ncc", diff --git a/examples/bundle-node/package.json b/examples/bundle-node/package.json index f4cc4dc..54b35c0 100644 --- a/examples/bundle-node/package.json +++ b/examples/bundle-node/package.json @@ -1,6 +1,6 @@ { "name": "@template/bundle-node", - "version": "1.1.0", + "version": "1.1.1", "description": "", "private": true, "scripts": { @@ -19,7 +19,7 @@ "@hapi/hapi": "^21.3.1" }, "devDependencies": { - "@kkt/ncc": "^1.1.0" + "@kkt/ncc": "^1.1.1" }, "eslintConfig": { "extends": [ diff --git a/examples/bundle/package.json b/examples/bundle/package.json index 1cff1c0..74251fe 100644 --- a/examples/bundle/package.json +++ b/examples/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@template/bundle", - "version": "1.1.0", + "version": "1.1.1", "main": "dist/bundle.js", "module": "src/components/index.js", "description": "", @@ -25,7 +25,7 @@ }, "devDependencies": { "@kkt/less-modules": "^7.5.3", - "@kkt/ncc": "^1.1.0", + "@kkt/ncc": "^1.1.1", "@types/react": "^18.2.24", "@types/react-dom": "^18.2.8", "kkt": "^7.5.3" diff --git a/examples/github-action/package.json b/examples/github-action/package.json index 7af8eba..aaff98f 100644 --- a/examples/github-action/package.json +++ b/examples/github-action/package.json @@ -1,6 +1,6 @@ { "name": "@template/github-actions", - "version": "1.1.0", + "version": "1.1.1", "private": true, "scripts": { "build": "npm run bundle && npm run bundle:min", diff --git a/lerna.json b/lerna.json index 66ff7a2..e46fe2f 100644 --- a/lerna.json +++ b/lerna.json @@ -1,4 +1,4 @@ { - "version": "1.1.0", + "version": "1.1.1", "packages": ["core", "examples/*"] }