@dodona/papyros 0.1.6-rc → 0.1.7-rc

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.
Files changed (2) hide show
  1. package/dist/Papyros.css +9 -0
  2. package/package.json +2 -2
@@ -0,0 +1,9 @@
1
+ @import "tailwindcss/base";
2
+ @import "tailwindcss/components";
3
+ @import "tailwindcss/utilities";
4
+
5
+ /* Styling elements generated by CodeMirror */
6
+
7
+ .cm-scroller, .cm-gutters { /* Min height of the editor via both gutter and scroller */
8
+ min-height: 20vh !important;
9
+ }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@dodona/papyros",
3
- "version": "0.1.6-rc",
3
+ "version": "0.1.7-rc",
4
4
  "description": "Scratchpad for multiple programming languages in the browser.",
5
5
  "scripts": {
6
6
  "start": "webpack serve",
7
- "build": "tsc --build --verbose",
7
+ "build": "scripts/build.sh",
8
8
  "test": "echo No tests defined yet",
9
9
  "lint": "eslint --ext '.js' --ext '.ts' src"
10
10
  },