@lando/laravel 0.6.0 → 0.7.0

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.
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":1835,"argv":["/opt/hostedtoolcache/node/16.18.1/x64/bin/node","/home/runner/work/laravel/laravel/node_modules/.bin/mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/laravel/laravel","time":1670954463829,"ppid":1823,"coverageFilename":"/home/runner/work/laravel/laravel/.nyc_output/a6cf66fd-83f0-4291-b9aa-06bb47589038.json","externalId":"","uuid":"a6cf66fd-83f0-4291-b9aa-06bb47589038","files":[]}
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":1823,"argv":["/opt/hostedtoolcache/node/16.18.1/x64/bin/node","/home/runner/work/laravel/laravel/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/laravel/laravel","time":1670954463358,"ppid":1822,"coverageFilename":"/home/runner/work/laravel/laravel/.nyc_output/fa0ffefe-70a6-4ce5-a2da-ea4425385483.json","externalId":"","uuid":"fa0ffefe-70a6-4ce5-a2da-ea4425385483","files":["/home/runner/work/laravel/laravel/recipes/laravel/builder.js","/home/runner/work/laravel/laravel/recipes/laravel/init.js"]}
@@ -1 +1 @@
1
- {"processes":{"97132252-50c0-4b07-80bf-a267d028ba25":{"parent":null,"children":[]},"f17d0988-905e-443a-9f00-03f88bec07aa":{"parent":null,"children":[]}},"files":{"/home/runner/work/laravel/laravel/recipes/laravel/builder.js":["97132252-50c0-4b07-80bf-a267d028ba25"],"/home/runner/work/laravel/laravel/recipes/laravel/init.js":["97132252-50c0-4b07-80bf-a267d028ba25"]},"externalIds":{}}
1
+ {"processes":{"a6cf66fd-83f0-4291-b9aa-06bb47589038":{"parent":null,"children":[]},"fa0ffefe-70a6-4ce5-a2da-ea4425385483":{"parent":null,"children":[]}},"files":{"/home/runner/work/laravel/laravel/recipes/laravel/builder.js":["fa0ffefe-70a6-4ce5-a2da-ea4425385483"],"/home/runner/work/laravel/laravel/recipes/laravel/init.js":["fa0ffefe-70a6-4ce5-a2da-ea4425385483"]},"externalIds":{}}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v0.7.0 - [December 12, 2022](https://github.com/lando/laravel/releases/tag/v0.7.0)
2
+ * Added bundle-dependencies to release process.
3
+ * Fixed bug in plugin dogfooding test.
4
+
1
5
  ## v0.6.0 - [September 8, 2022](https://github.com/lando/laravel/releases/tag/v0.6.0)
2
6
 
3
7
  * HYPERDRIVED
@@ -292,7 +292,7 @@ const getCache = <span class="cstat-no" title="statement not covered" ><span cla
292
292
  <div class='footer quiet pad2 space-top1 center small'>
293
293
  Code coverage generated by
294
294
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
295
- at Thu Sep 08 2022 16:25:16 GMT+0000 (Coordinated Universal Time)
295
+ at 2022-12-13T18:01:04.092Z
296
296
  </div>
297
297
  <script src="prettify.js"></script>
298
298
  <script>
Binary file
@@ -116,7 +116,7 @@
116
116
  <div class='footer quiet pad2 space-top1 center small'>
117
117
  Code coverage generated by
118
118
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
119
- at Thu Sep 08 2022 16:25:16 GMT+0000 (Coordinated Universal Time)
119
+ at 2022-12-13T18:01:04.092Z
120
120
  </div>
121
121
  <script src="prettify.js"></script>
122
122
  <script>
@@ -94,7 +94,7 @@
94
94
  <div class='footer quiet pad2 space-top1 center small'>
95
95
  Code coverage generated by
96
96
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
97
- at Thu Sep 08 2022 16:25:16 GMT+0000 (Coordinated Universal Time)
97
+ at 2022-12-13T18:01:04.092Z
98
98
  </div>
99
99
  <script src="prettify.js"></script>
100
100
  <script>
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lando/laravel",
3
3
  "description": "A Lando plugin that provides a tight integration with Laravel.",
4
- "version": "0.6.0",
4
+ "version": "0.7.0",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "GPL-3.0",
7
7
  "repository": "lando/laravel",
@@ -16,7 +16,9 @@
16
16
  "engines": {
17
17
  "node": ">=16.0.0"
18
18
  },
19
- "bundledDependencies": true,
19
+ "bundledDependencies": [
20
+ "lodash"
21
+ ],
20
22
  "lando": {},
21
23
  "main": "index.js",
22
24
  "nyc": {
@@ -38,7 +40,7 @@
38
40
  "docs:build": "vuepress build docs",
39
41
  "docs:lint": "eslint -c docs/.eslintrc.json --quiet docs/.vuepress",
40
42
  "lint": "eslint --quiet . && yarn docs:lint",
41
- "release": "bump --prompt --tag --all --push",
43
+ "release": "bundle-dependencies update && bump --prompt --tag --all --push",
42
44
  "test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
43
45
  "test:leia": "yarn leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
44
46
  "test": "yarn lint && yarn test:unit"
@@ -49,7 +51,8 @@
49
51
  "devDependencies": {
50
52
  "@babel/eslint-parser": "^7.16.0",
51
53
  "@lando/leia": "^0.6.4",
52
- "@lando/vuepress-theme-default-plus": "1.0.0-beta.34",
54
+ "@lando/vuepress-theme-default-plus": "1.0.0-beta.44",
55
+ "bundle-dependencies": "^1.0.2",
53
56
  "chai": "^4.3.4",
54
57
  "command-line-test": "^1.0.10",
55
58
  "eslint": "^7.32.0",
@@ -58,6 +61,6 @@
58
61
  "mocha": "^9.1.2",
59
62
  "nyc": "^15.1.0",
60
63
  "version-bump-prompt": "^4.2.1",
61
- "vuepress": "^2.0.0-beta.43"
64
+ "vuepress": "2.0.0-beta.53"
62
65
  }
63
66
  }
@@ -1 +0,0 @@
1
- {"parent":null,"pid":1850,"argv":["/opt/hostedtoolcache/node/16.17.0/x64/bin/node","/home/runner/work/laravel/laravel/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/laravel/laravel","time":1662654316067,"ppid":1849,"coverageFilename":"/home/runner/work/laravel/laravel/.nyc_output/97132252-50c0-4b07-80bf-a267d028ba25.json","externalId":"","uuid":"97132252-50c0-4b07-80bf-a267d028ba25","files":["/home/runner/work/laravel/laravel/recipes/laravel/builder.js","/home/runner/work/laravel/laravel/recipes/laravel/init.js"]}
@@ -1 +0,0 @@
1
- {"parent":null,"pid":1861,"argv":["/opt/hostedtoolcache/node/16.17.0/x64/bin/node","/home/runner/work/laravel/laravel/node_modules/.bin/mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/laravel/laravel","time":1662654316507,"ppid":1850,"coverageFilename":"/home/runner/work/laravel/laravel/.nyc_output/f17d0988-905e-443a-9f00-03f88bec07aa.json","externalId":"","uuid":"f17d0988-905e-443a-9f00-03f88bec07aa","files":[]}