nitro-web 0.0.186 → 0.0.187
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/client/index.ts +1 -0
- package/package.json +5 -1
package/client/index.ts
CHANGED
|
@@ -4,6 +4,7 @@ import '../types/globals.d.ts'
|
|
|
4
4
|
// Utility functions (since this file is an export, use export path for js declarations to work in host projects)
|
|
5
5
|
export * from 'nitro-web/util'
|
|
6
6
|
export * as util from 'nitro-web/util'
|
|
7
|
+
export { currencies, countries } from 'nitro-web/constants'
|
|
7
8
|
|
|
8
9
|
// Main types (since this file is an export, this needs to be a relative path, we cant use tsconfig path aliases)
|
|
9
10
|
export * from '../types'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nitro-web",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.187",
|
|
4
4
|
"repository": "github:boycce/nitro-web",
|
|
5
5
|
"homepage": "https://boycce.github.io/nitro-web/",
|
|
6
6
|
"description": "Nitro is a battle-tested, modular base project to turbocharge your projects, styled using Tailwind 🚀",
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"./util": {
|
|
21
21
|
"import": "./util.js",
|
|
22
22
|
"types": "./types/util.d.ts"
|
|
23
|
+
},
|
|
24
|
+
"./constants": {
|
|
25
|
+
"import": "./server/constants.js",
|
|
26
|
+
"types": "./types/server/constants.d.ts"
|
|
23
27
|
}
|
|
24
28
|
},
|
|
25
29
|
"scripts": {
|