@lando/laravel 0.8.0 → 0.9.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":1858,"argv":["/opt/hostedtoolcache/node/16.20.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":1688412863074,"ppid":1857,"coverageFilename":"/home/runner/work/laravel/laravel/.nyc_output/5ec33fec-d7ab-43d1-b5c0-9ecf73589dc1.json","externalId":"","uuid":"5ec33fec-d7ab-43d1-b5c0-9ecf73589dc1","files":["/home/runner/work/laravel/laravel/recipes/laravel/builder.js","/home/runner/work/laravel/laravel/recipes/laravel/init.js"]}
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":1869,"argv":["/opt/hostedtoolcache/node/16.20.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":1688412863536,"ppid":1858,"coverageFilename":"/home/runner/work/laravel/laravel/.nyc_output/c1243f70-a3ca-4be1-a5ad-67ffe474077c.json","externalId":"","uuid":"c1243f70-a3ca-4be1-a5ad-67ffe474077c","files":[]}
@@ -1 +1 @@
1
- {"processes":{"55388cad-2526-4f18-92f3-1ff5a5f930f1":{"parent":null,"children":[]},"e1c1aa4c-9973-4d84-b990-697deac62539":{"parent":null,"children":[]}},"files":{"/home/runner/work/laravel/laravel/recipes/laravel/builder.js":["55388cad-2526-4f18-92f3-1ff5a5f930f1"],"/home/runner/work/laravel/laravel/recipes/laravel/init.js":["55388cad-2526-4f18-92f3-1ff5a5f930f1"]},"externalIds":{}}
1
+ {"processes":{"5ec33fec-d7ab-43d1-b5c0-9ecf73589dc1":{"parent":null,"children":[]},"c1243f70-a3ca-4be1-a5ad-67ffe474077c":{"parent":null,"children":[]}},"files":{"/home/runner/work/laravel/laravel/recipes/laravel/builder.js":["5ec33fec-d7ab-43d1-b5c0-9ecf73589dc1"],"/home/runner/work/laravel/laravel/recipes/laravel/init.js":["5ec33fec-d7ab-43d1-b5c0-9ecf73589dc1"]},"externalIds":{}}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## v0.9.0 - [July 3, 2023](https://github.com/lando/laravel/releases/tag/v0.9.0)
2
+ * Removed bundle-dependencies and version-bump-prompt from plugin.
3
+ * Updated package to use prepare-release-action.
4
+ * Updated documentation to reflect new release process.
5
+
1
6
  ## v0.8.0 - [February 24, 2022](https://github.com/lando/laravel/releases/tag/v0.8.0)
2
7
 
3
8
  * Add compatibility for MySQL 8.x [lando/lando#1426](https://github.com/lando/lando/issues/1462)
@@ -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 2023-02-25T00:44:45.698Z
295
+ at 2023-07-03T19:34:23.769Z
296
296
  </div>
297
297
  <script src="prettify.js"></script>
298
298
  <script>
@@ -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 2023-02-25T00:44:45.698Z
119
+ at 2023-07-03T19:34:23.769Z
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 2023-02-25T00:44:45.698Z
97
+ at 2023-07-03T19:34:23.769Z
98
98
  </div>
99
99
  <script src="prettify.js"></script>
100
100
  <script>
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.8.0",
4
+ "version": "0.9.0",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "GPL-3.0",
7
7
  "repository": "lando/laravel",
@@ -40,7 +40,6 @@
40
40
  "docs:build": "vuepress build docs",
41
41
  "docs:lint": "eslint -c docs/.eslintrc.json --quiet docs/.vuepress",
42
42
  "lint": "eslint --quiet . && yarn docs:lint",
43
- "release": "bundle-dependencies update && bump --prompt --tag --all --push",
44
43
  "test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
45
44
  "test:leia": "yarn leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
46
45
  "test": "yarn lint && yarn test:unit"
@@ -50,9 +49,8 @@
50
49
  },
51
50
  "devDependencies": {
52
51
  "@babel/eslint-parser": "^7.16.0",
53
- "@lando/leia": "^0.6.4",
54
- "@lando/vuepress-theme-default-plus": "1.0.0-beta.44",
55
- "bundle-dependencies": "^1.0.2",
52
+ "@lando/leia": "^0.6.5",
53
+ "@lando/vuepress-theme-default-plus": "1.0.0-beta.45",
56
54
  "chai": "^4.3.4",
57
55
  "command-line-test": "^1.0.10",
58
56
  "eslint": "^7.32.0",
@@ -60,7 +58,6 @@
60
58
  "eslint-plugin-vue": "^8.0.3",
61
59
  "mocha": "^9.1.2",
62
60
  "nyc": "^15.1.0",
63
- "version-bump-prompt": "^4.2.1",
64
61
  "vuepress": "2.0.0-beta.53"
65
62
  }
66
- }
63
+ }
@@ -1 +0,0 @@
1
- {"parent":null,"pid":1752,"argv":["/opt/hostedtoolcache/node/16.19.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":1677285884990,"ppid":1751,"coverageFilename":"/home/runner/work/laravel/laravel/.nyc_output/55388cad-2526-4f18-92f3-1ff5a5f930f1.json","externalId":"","uuid":"55388cad-2526-4f18-92f3-1ff5a5f930f1","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":1763,"argv":["/opt/hostedtoolcache/node/16.19.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":1677285885459,"ppid":1752,"coverageFilename":"/home/runner/work/laravel/laravel/.nyc_output/e1c1aa4c-9973-4d84-b990-697deac62539.json","externalId":"","uuid":"e1c1aa4c-9973-4d84-b990-697deac62539","files":[]}
@@ -1,12 +0,0 @@
1
- # Disable the "core" laravel plugins
2
- disablePlugins:
3
- - lando-laravel
4
-
5
- # Make sure we are dogfooding this plugin for testing purposes
6
- plugins:
7
- "@lando/laravel": /home/runner/work/laravel/laravel
8
-
9
- # Disable metrics reporting
10
- stats:
11
- - report: false
12
- url: https://metrics.lando.dev