tangled
alpha
login
or
join now
nekomimi.pet
/
atproto-ui
41
fork
atom
A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.
41
fork
atom
overview
issues
2
pulls
pipelines
version bump, remove source maps
waveringana
5 months ago
836a459c
e9670a5d
+4
-5
2 changed files
expand all
collapse all
unified
split
package.json
vite.config.ts
+2
-3
package.json
···
1
1
{
2
2
"name": "atproto-ui",
3
3
-
"version": "0.6.0",
3
3
+
"version": "0.6.0-1",
4
4
"type": "module",
5
5
"description": "React components and hooks for rendering AT Protocol records.",
6
6
"main": "./lib-dist/index.js",
···
18
18
"README.md"
19
19
],
20
20
"sideEffects": [
21
21
-
"./lib-dist/styles.css",
22
22
-
"./lib-dist/index.js"
21
21
+
"./lib-dist/styles.css"
23
22
],
24
23
"scripts": {
25
24
"dev": "vite",
+2
-2
vite.config.ts
···
35
35
rollupOptions: {
36
36
input: resolve(__dirname, 'index.html')
37
37
},
38
38
-
sourcemap: true
38
38
+
sourcemap: false
39
39
} : {
40
40
// Library build configuration
41
41
lib: {
···
71
71
}
72
72
}
73
73
},
74
74
-
sourcemap: true,
74
74
+
sourcemap: false,
75
75
minify: false
76
76
}
77
77
});