@upstart.gg/style-system 0.0.131 → 0.0.133

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.131 build /home/runner/work/upstart/upstart/packages/style-system
2
+ > @upstart.gg/style-system@0.0.133 build /home/runner/work/upstart/upstart/packages/style-system
3
3
  > tsup
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @upstart.gg/style-system
2
2
 
3
+ ## 0.0.133
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ - [#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
10
+
11
+ ## 0.0.132
12
+
3
13
  ## 0.0.131
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@upstart.gg/style-system",
3
- "version": "0.0.131",
3
+ "version": "0.0.133",
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
  };