@nextrap/style-utils 0.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/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## 0.0.2 (2025-07-21)
2
+
3
+ This was a version bump only for style-utils to align it with other projects, there were no code changes.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # style-utils
2
+
3
+ This library was generated with [Nx](https://nx.dev).
4
+
5
+ ## Building
6
+
7
+ Run `nx build style-utils` to build the library.
8
+
9
+ ## Running unit tests
10
+
11
+ Run `nx test style-utils` to execute the unit tests via [Vitest](https://vitest.dev/).
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './lib/style-utils';
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ function t() {
2
+ return "style-utils";
3
+ }
4
+ export {
5
+ t as styleUtils
6
+ };
@@ -0,0 +1 @@
1
+ export declare function styleUtils(): string;
package/main.ts ADDED
@@ -0,0 +1,2 @@
1
+ import '@nextrap/style-reset';
2
+ import '../index.scss';
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@nextrap/style-utils",
3
+ "version": "0.0.1",
4
+ "main": "./index.js",
5
+ "dependencies": {
6
+ "@nextrap/style-base": "^0.0.2"
7
+ },
8
+ "type": "module",
9
+ "types": "./index.d.ts"
10
+ }