sheet-i18n 0.1.0 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
 
2
2
  
3
- > sheet-i18n@0.1.0 build /Users/choeucheol/Documents/dev/project/sheet-i18n/packages/sheet-i18n
3
+ > sheet-i18n@0.1.3 build /Users/choeucheol/Documents/dev/project/sheet-i18n/packages/sheet-i18n
4
4
  > tsup
5
5
 
6
6
  CLI Building entry: src/index.ts, src/exporter/index.ts
@@ -14,11 +14,11 @@
14
14
  CJS dist/index.js 1.28 KB
15
15
  CJS dist/exporter/index.js 1.10 KB
16
16
  CJS ⚡️ Build success in 6ms
17
- ESM dist/chunk-7AQPNLGW.mjs 122.00 B
18
- ESM dist/index.mjs 102.00 B
19
17
  ESM dist/exporter/index.mjs 32.00 B
18
+ ESM dist/index.mjs 102.00 B
19
+ ESM dist/chunk-7AQPNLGW.mjs 122.00 B
20
20
  ESM ⚡️ Build success in 6ms
21
21
  DTS Build start
22
- DTS ⚡️ Build success in 353ms
22
+ DTS ⚡️ Build success in 357ms
23
23
  DTS dist/exporter/index.d.ts 592.00 B
24
24
  DTS dist/index.d.ts 84.00 B
@@ -0,0 +1,8 @@
1
+
2
+ 
3
+ > sheet-i18n@0.1.2 changelog /Users/choeucheol/Documents/dev/project/sheet-i18n/packages/sheet-i18n
4
+ > standard-version
5
+
6
+ ✔ bumping version in package.json from 0.1.2 to 0.1.3
7
+ ✔ outputting changes to CHANGELOG.md
8
+ ✔ committing package.json and CHANGELOG.md
package/CHANGELOG.md ADDED
@@ -0,0 +1,22 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [0.1.3](https://github.com/chltjdrhd777/sheet-i18n/compare/v0.1.1...v0.1.3) (2024-12-23)
6
+
7
+
8
+ ### Features
9
+
10
+ * add changelog script to track changes ([9a07986](https://github.com/chltjdrhd777/sheet-i18n/commit/9a07986b0da9a3ffaa702888284df5059c64f776))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * change vscode eslint setting to format ([2c7513d](https://github.com/chltjdrhd777/sheet-i18n/commit/2c7513d6c37f57e9cf90fd5868ab40d61cda8366))
16
+
17
+ ### [0.1.1](https://github.com/chltjdrhd777/sheet-i18n/compare/v0.1.2...v0.1.1) (2024-12-23)
18
+
19
+
20
+ ### Features
21
+
22
+ * add changelog script in container sheet-18n package ([0f05e47](https://github.com/chltjdrhd777/sheet-i18n/commit/0f05e47dfaa2e6ddc57ff4122f3a09fa8e65f645))
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "sheet-i18n",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
7
7
  "scripts": {
8
8
  "build": "tsup",
9
9
  "dev": "tsup --watch",
10
+ "changelog": "standard-version",
10
11
  "publish:npm": "npm publish"
11
12
  },
12
13
  "exports": {
@@ -15,6 +16,18 @@
15
16
  "import": "./dist/exporter/index.mjs"
16
17
  }
17
18
  },
19
+ "keywords": [
20
+ "sheet-i18n",
21
+ "spreadsheet",
22
+ "i18n",
23
+ "translation"
24
+ ],
25
+ "author": {
26
+ "name": "devAnderson",
27
+ "email": "chltjdrhd777@gmail.com",
28
+ "url": "https://github.com/chltjdrhd777"
29
+ },
30
+ "license": "ISC",
18
31
  "dependencies": {
19
32
  "@sheet-i18n/exporter": "workspace:*"
20
33
  },