@lando/symfony 1.0.0 → 1.1.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.
package/.eslintignore CHANGED
@@ -1,4 +1,5 @@
1
- .temp
2
- .cache
1
+ temp
2
+ cache
3
3
  dist
4
4
  _site
5
+ !.vitepress
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":1962,"argv":["/opt/hostedtoolcache/node/18.19.0/x64/bin/node","/home/runner/work/symfony/symfony/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/symfony/symfony","time":1708382530717,"ppid":1961,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/371303f7-e958-4840-acbc-89619135d0b4.json","externalId":"","uuid":"371303f7-e958-4840-acbc-89619135d0b4","files":[]}
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":1973,"argv":["/opt/hostedtoolcache/node/18.19.0/x64/bin/node","/home/runner/work/symfony/symfony/node_modules/.bin/mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/symfony/symfony","time":1708382530871,"ppid":1962,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/a11a3a01-e13d-4fd0-a920-03b9fb11a9a9.json","externalId":"","uuid":"a11a3a01-e13d-4fd0-a920-03b9fb11a9a9","files":[]}
@@ -1 +1 @@
1
- {"processes":{"36ba79d3-a4a8-4d41-9c4a-38b44bccee89":{"parent":null,"children":[]},"bac0446e-37b9-46cf-bb27-4e5be8b35810":{"parent":null,"children":[]}},"files":{},"externalIds":{}}
1
+ {"processes":{"371303f7-e958-4840-acbc-89619135d0b4":{"parent":null,"children":[]},"a11a3a01-e13d-4fd0-a920-03b9fb11a9a9":{"parent":null,"children":[]}},"files":{},"externalIds":{}}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v1.1.0 - [February 19, 2024](https://github.com/lando/symfony/releases/tag/v1.1.0)
2
+
3
+ * Fixed issue with @lando/memcached path being in an unexpected location. [#38](https://github.com/lando/symfony/issues/38)
4
+
1
5
  ## v1.0.0 - [December 13, 2023](https://github.com/lando/symfony/releases/tag/v1.0.0)
2
6
 
3
7
  * Dialed fully for `lando update`
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const _ = require('lodash');
4
- const LandoMemcached = require('@lando/memcached/builders/memcached.js');
4
+ const LandoMemcached = require('@lando/memcached/services/memcached/builder.js');
5
5
 
6
6
  // Builder
7
7
  module.exports = {
@@ -86,7 +86,7 @@
86
86
  <div class='footer quiet pad2 space-top1 center small'>
87
87
  Code coverage generated by
88
88
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
89
- at 2023-12-13T21:19:24.163Z
89
+ at 2024-02-19T22:42:11.063Z
90
90
  </div>
91
91
  <script src="prettify.js"></script>
92
92
  <script>
package/netlify.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [build]
2
2
  base = "./"
3
- publish = "docs/.vuepress/dist"
3
+ publish = "docs/.vitepress/dist"
4
4
  command = "npm run docs:build"
5
5
 
6
6
  # Sets our asset optimization
@@ -20,13 +20,28 @@
20
20
  for = "/images/*"
21
21
  [headers.values]
22
22
  Cache-Control = "public, max-age=31536000"
23
-
23
+
24
+ # pluginz
25
+ # https://github.com/netlify/netlify-plugin-lighthouse#readme
26
+ [[plugins]]
27
+ package = "@netlify/plugin-lighthouse"
28
+ [plugins.inputs.audits]
29
+ output_path = "reports/lighthouse.html"
30
+
31
+ # https://github.com/munter/netlify-plugin-checklinks#readme
32
+ [[plugins]]
33
+ package = "netlify-plugin-checklinks"
34
+ [plugins.inputs]
35
+ todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com" ]
36
+ skipPatterns = [ ".rss", ".gif", ".jpg" ]
37
+ checkExternal = true
38
+
24
39
  # We need this so preview environments and the base site look ok on their own
25
40
  [[redirects]]
26
41
  from = "/"
27
- to = "/symfony"
42
+ to = "/plugins/symfony"
28
43
  status = 200
29
44
  [[redirects]]
30
- from = "/symfony/*"
45
+ from = "/plugins/symfony/*"
31
46
  to = "/:splat"
32
47
  status = 200
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lando/symfony",
3
3
  "description": "A Lando plugin that provides a tight integration with Symfony.",
4
- "version": "1.0.0",
4
+ "version": "1.1.0",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "GPL-3.0",
7
7
  "repository": "lando/symfony",
@@ -33,10 +33,10 @@
33
33
  },
34
34
  "scripts": {
35
35
  "coverage": "nyc report --reporter=text-lcov | coveralls",
36
- "docs:dev": "vuepress dev docs --clean-cache --clean-temp",
37
- "docs:build": "vuepress build docs",
38
- "docs:lint": "eslint -c docs/.eslintrc.json --quiet docs/.vuepress",
39
- "lint": "eslint --quiet . && npm run docs:lint",
36
+ "docs:dev": "vitepress dev docs",
37
+ "docs:build": "vitepress build docs",
38
+ "docs:preview": "vitepress preview docs",
39
+ "lint": "eslint . --ext .js --ext .mjs ",
40
40
  "test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
41
41
  "test:leia": "leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
42
42
  "test": "npm run lint && npm run test:unit"
@@ -55,7 +55,7 @@
55
55
  "devDependencies": {
56
56
  "@babel/eslint-parser": "^7.16.0",
57
57
  "@lando/leia": "^0.6.5",
58
- "@lando/vuepress-theme-default-plus": "1.0.0-beta.49",
58
+ "@lando/vitepress-theme-default-plus": "^1.0.0-beta.39",
59
59
  "chai": "^4.3.4",
60
60
  "command-line-test": "^1.0.10",
61
61
  "eslint": "^7.32.0",
@@ -63,7 +63,7 @@
63
63
  "eslint-plugin-vue": "^8.0.3",
64
64
  "mocha": "^9.1.2",
65
65
  "nyc": "^15.1.0",
66
- "vuepress": "2.0.0-beta.53"
66
+ "vitepress": "^1.0.0-rc.42"
67
67
  },
68
68
  "bundledDependencies": [
69
69
  "@lando/apache",
@@ -77,9 +77,9 @@
77
77
  "lodash"
78
78
  ],
79
79
  "dist": {
80
- "integrity": "sha512-s3jyeXH7ATZbBSq7aVzuqP6Wg6n6TXdZpvNXNGuCjptgeRRbTyX+QBbMAz3cSCvpx9Ty0vUsqr9hMdX15S/CXw==",
81
- "shasum": "f47cbec8a9d73a2d6d1eac2a88ba674476cb7cb9",
82
- "filename": "lando-symfony-1.0.0.tgz",
83
- "unpackedSize": 15246112
80
+ "integrity": "sha512-oKUkcdF0tfkrvGv2BGtwDuO1CTgz2nkew0JgFaGB/SBqTicNCv5SClnQoaaQEo02h369SHJM8Bv74tqeXm6AgA==",
81
+ "shasum": "849f979dc74b0abfbb192cb2d39af1faca19cab0",
82
+ "filename": "lando-symfony-1.1.0.tgz",
83
+ "unpackedSize": 15246771
84
84
  }
85
85
  }
@@ -1 +0,0 @@
1
- {"parent":null,"pid":1977,"argv":["/opt/hostedtoolcache/node/18.19.0/x64/bin/node","/home/runner/work/symfony/symfony/node_modules/.bin/mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/symfony/symfony","time":1702502363952,"ppid":1966,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/36ba79d3-a4a8-4d41-9c4a-38b44bccee89.json","externalId":"","uuid":"36ba79d3-a4a8-4d41-9c4a-38b44bccee89","files":[]}
@@ -1 +0,0 @@
1
- {"parent":null,"pid":1966,"argv":["/opt/hostedtoolcache/node/18.19.0/x64/bin/node","/home/runner/work/symfony/symfony/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/symfony/symfony","time":1702502363797,"ppid":1965,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/bac0446e-37b9-46cf-bb27-4e5be8b35810.json","externalId":"","uuid":"bac0446e-37b9-46cf-bb27-4e5be8b35810","files":[]}