We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0e395f commit 8c19be0Copy full SHA for 8c19be0
Development-helpers.md
@@ -0,0 +1,15 @@
1
+Good to do when publishing everything all-at-once.
2
+
3
+```shell
4
+eachdir grunt grunt-{contrib,lib}-* -- 'git pull'
5
+eachdir grunt grunt-{contrib,lib}-* -- 'rm -rf node_modules; linken . --src ..; npm install'
6
7
+# Make sure symlinks were created, if not there's a version mismatch
8
+eachdir grunt grunt-{contrib,lib}-* -- 'll node_modules | grep grunt'
9
10
+# Make sure everything passes
11
+eachdir grunt grunt-{contrib,lib}-* -- grunt
12
13
+# Make sure all versions are final
14
+eachdir grunt grunt-{contrib,lib}-* -- 'git branch; node -pe "require(\"./package.json\").version"'
15
+```
0 commit comments