@upstart.gg/style-system 0.0.132 → 0.0.134

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,4 +1,4 @@
1
1
 
2
- > @upstart.gg/style-system@0.0.132 build /home/runner/work/upstart/upstart/packages/style-system
2
+ > @upstart.gg/style-system@0.0.134 build /home/runner/work/upstart/upstart/packages/style-system
3
3
  > tsup
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @upstart.gg/style-system
2
2
 
3
+ ## 0.0.134
4
+
5
+ ### Patch Changes
6
+
7
+ - [#451](https://github.com/upstart-gg/upstart/pull/451) [`04e3c15`](https://github.com/upstart-gg/upstart/commit/04e3c15aa2488d192ce43bde9510c11a17b433ed) Thanks [@mattallty](https://github.com/mattallty)! - Clean
8
+
9
+ ## 0.0.133
10
+
11
+ ### Patch Changes
12
+
13
+ - [#448](https://github.com/upstart-gg/upstart/pull/448) [`04e8743`](https://github.com/upstart-gg/upstart/commit/04e8743ed1c48e8266d0bf00e2370a3422da5848) Thanks [@mattallty](https://github.com/mattallty)! - clean some code
14
+
15
+ - [#447](https://github.com/upstart-gg/upstart/pull/447) [`d0e9bc9`](https://github.com/upstart-gg/upstart/commit/d0e9bc997b4bf5a61a9467f6f15158d86ccf8775) Thanks [@mattallty](https://github.com/mattallty)! - fix: update dev and build scripts to use loose environment mode
16
+
3
17
  ## 0.0.132
4
18
 
5
19
  ## 0.0.131
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@upstart.gg/style-system",
3
- "version": "0.0.132",
3
+ "version": "0.0.134",
4
4
  "description": "Base tailwindcss setup with some extra plugins as well as colors and editor styles",
5
5
  "type": "module",
6
6
  "exports": {
package/tsup.config.ts CHANGED
@@ -12,8 +12,7 @@ export default defineConfig((options) => {
12
12
  metafile: !!(process.env.CI || process.env.ANALYZE_BUNDLE),
13
13
  clean: !options.watch,
14
14
  minify: !options.watch,
15
- sourcemap: !options.watch,
16
- // splitting: false,
15
+ sourcemap: options.watch ? "inline" : true,
17
16
  external: ["react", "react-dom"],
18
17
  removeNodeProtocol: false,
19
18
  };