@omisai/countries 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -13,10 +13,10 @@ TypeScript package for country data with classes and interfaces generated from I
13
13
  - TypeScript with full type definitions
14
14
  - Individual class for each country
15
15
  - ISO 3166-1 codes (alpha-2, alpha-3, numeric)
16
+ - FIPS code (Federal Information Processing Standard)
16
17
  - Telephone country codes
17
18
  - Capital cities
18
19
  - Continent classification
19
- - Built with Rolldown for optimal bundle size
20
20
  - 100% functional test coverage
21
21
  - Compatible with Node.js, Bun
22
22
 
@@ -144,28 +144,13 @@ The package includes comprehensive tests that run on Node.js, Bun:
144
144
  npm test
145
145
 
146
146
  # Bun
147
- bun test tests/*.test.ts
148
-
149
- ## CI/CD
150
-
151
- This project uses GitHub Actions for:
152
- - ✅ Automated testing on Node.js 18, 20, 22
153
- - ✅ Automated testing on Bun
154
- - ✅ Code coverage reporting
155
- - ✅ Automated releases to NPM and JSR
156
- - ✅ Dependency updates via Dependabot
157
-
158
- ## Releasing
159
-
160
- This project uses manual GitHub Actions workflow for releases. See [RELEASE.md](./RELEASE.md) for detailed instructions.
147
+ bun test
148
+ ```
161
149
 
162
- **Quick release**:
163
- 1. Go to Actions → Release workflow
164
- 2. Click "Run workflow"
165
- 3. Enter version (e.g., `1.0.0`)
166
- 4. Run!
150
+ ## Roadmap
167
151
 
168
- The workflow automatically handles versioning, tagging, building, testing, and publishing to NPM and JSR.
152
+ - Add more languages for country names
153
+ - Include additional country data (e.g., currencies, time zones)
169
154
 
170
155
  ## Contributing
171
156
 
package/dist/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @omisai/countries v1.0.0
2
+ * @omisai/countries v1.0.1
3
3
  * JS/TS package for country data with classes and interfaces
4
4
  * @license MIT
5
5
  */
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @omisai/countries v1.0.0
2
+ * @omisai/countries v1.0.1
3
3
  * JS/TS package for country data with classes and interfaces
4
4
  * @license MIT
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omisai/countries",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "JS/TS package for country data with classes and interfaces",
5
5
  "type": "module",
6
6
  "license": "MIT",