@anydigital/eleventy-bricks 1.0.0-alpha.15 → 1.0.0-alpha.16

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anydigital/eleventy-bricks",
3
- "version": "1.0.0-alpha.15",
3
+ "version": "1.0.0-alpha.16",
4
4
  "description": "A collection of helpful utilities and filters for Eleventy (11ty)",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -2,17 +2,19 @@
2
2
  "name": "@anydigital/eleventy-bricks-do",
3
3
  "private": true,
4
4
  "scripts": {
5
- "build": "npm run 11ty && npm run tw -- --minify",
6
- "start": "npm run 11ty -- --serve & npm run tw -- --watch",
5
+ "build": "npm run tw -- --minify && npm run 11ty --",
6
+
7
+ "start": "npm run tw -- --watch & npm run 11ty -- --serve",
7
8
 
8
9
  "prerestart": "npm run 11ty:clean",
9
- "stage": " npm run 11ty:clean; npm run build && serve ../_site",
10
+
11
+ "stage": "npm run 11ty:clean; serve ../_site & npm run build --",
10
12
 
11
13
  "11ty": "cd ../ && NODE_OPTIONS='--preserve-symlinks' eleventy",
12
14
  "11ty:clean": "rm -r ../_site",
13
- "11ty:debug": "DEBUG=* npm run 11ty",
15
+ "11ty:debug": "DEBUG=* npm run 11ty --",
14
16
 
15
17
  "tw": "tailwindcss -i ../src/_template/styles.css -o ../_site/styles.css",
16
- "tw:debug": "DEBUG=* npm run tw"
18
+ "tw:debug": "DEBUG=* npm run tw --"
17
19
  }
18
20
  }