pacem-less 0.52.1 → 0.52.2

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.
@@ -35,6 +35,11 @@
35
35
  opacity: 1;
36
36
  transform: translateX(0);
37
37
  }
38
+
39
+ // no-border
40
+ &.sidebar-noborder::part(drawer) {
41
+ border: 0;
42
+ }
38
43
  // coloring
39
44
 
40
45
  .Sidebar(@bg, @fore) {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.52.1",
2
+ "version": "0.52.2",
3
3
  "name": "pacem-less",
4
4
  "homepage": "https://js.pacem.it",
5
5
  "repository": {
package/themebuilder.js CHANGED
@@ -2,7 +2,8 @@ const fs = require('fs');
2
2
  const vm = require('vm');
3
3
  const path = require('path');
4
4
  const yargs = require('yargs');
5
- const argv = yargs
5
+ const helpers = require('yargs/helpers');
6
+ const argv = yargs(helpers.hideBin(process.argv))
6
7
  .option('theme', {
7
8
  alias: 't',
8
9
  type: 'string',