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.
- package/.turbo/turbo-build.log +4 -4
- package/.turbo/turbo-changelog.log +8 -0
- package/CHANGELOG.md +22 -0
- package/package.json +14 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> sheet-i18n@0.1.
|
|
3
|
+
> sheet-i18n@0.1.3 build /Users/choeucheol/Documents/dev/project/sheet-i18n/packages/sheet-i18n
|
|
4
4
|
> tsup
|
|
5
5
|
|
|
6
6
|
[34mCLI[39m Building entry: src/index.ts, src/exporter/index.ts
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
[32mCJS[39m [1mdist/index.js [22m[32m1.28 KB[39m
|
|
15
15
|
[32mCJS[39m [1mdist/exporter/index.js [22m[32m1.10 KB[39m
|
|
16
16
|
[32mCJS[39m ⚡️ Build success in 6ms
|
|
17
|
-
[32mESM[39m [1mdist/chunk-7AQPNLGW.mjs [22m[32m122.00 B[39m
|
|
18
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m102.00 B[39m
|
|
19
17
|
[32mESM[39m [1mdist/exporter/index.mjs [22m[32m32.00 B[39m
|
|
18
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m102.00 B[39m
|
|
19
|
+
[32mESM[39m [1mdist/chunk-7AQPNLGW.mjs [22m[32m122.00 B[39m
|
|
20
20
|
[32mESM[39m ⚡️ Build success in 6ms
|
|
21
21
|
[34mDTS[39m Build start
|
|
22
|
-
[32mDTS[39m ⚡️ Build success in
|
|
22
|
+
[32mDTS[39m ⚡️ Build success in 357ms
|
|
23
23
|
[32mDTS[39m [1mdist/exporter/index.d.ts [22m[32m592.00 B[39m
|
|
24
24
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m84.00 B[39m
|
|
@@ -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
|
+
[32m✔[39m bumping version in package.json from [1m0.1.2[22m to [1m0.1.3[22m
|
|
7
|
+
[32m✔[39m outputting changes to [1mCHANGELOG.md[22m
|
|
8
|
+
[32m✔[39m committing [1mpackage.json[22m and [1mCHANGELOG.md[22m
|
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.
|
|
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
|
},
|