desy-html 9.0.1 → 10.0.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/README.md +1 -1
- package/docs/index.html +5 -1
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ See live examples of desy-html components: [https://desy.aragon.es/](https://des
|
|
|
11
11
|
* Run `npm install` first.
|
|
12
12
|
* Use `npm run dev` to generate CSS from `src/styles.css` to `/dist/styles.css`, listen to changes in njk, css and html, and browser-sync reload.
|
|
13
13
|
* Use `npm run prod` to generate CSS, Purge it and Minify it.
|
|
14
|
-
* Dependencies: Node.js
|
|
14
|
+
* Dependencies: Node.js v20.14.0, Tailwind CSS and AutoPrefixer configed in PostCSS
|
|
15
15
|
|
|
16
16
|
### How do I start a project that uses desy-html components? ###
|
|
17
17
|
|
package/docs/index.html
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<li>Ejecuta primero <code>npm install</code></li>
|
|
17
17
|
<li>Ejecuta <code>npm run dev</code> para escuchar cambios en los archivos njk, css y html, para renderizarlos y recargar el servidor local con browser-sync.</li>
|
|
18
18
|
<li>Usa <code>npm run prod</code> para generar el CSS y minificarlo.</li>
|
|
19
|
-
<li>Dependencias: Node.js
|
|
19
|
+
<li>Dependencias: Node.js v20.14.0, Tailwind CSS y AutoPrefixer configurado en PostCSS. Versión y lista de dependencias completa en: <a href="package.json">Ver package.json</a></li>
|
|
20
20
|
</ul>
|
|
21
21
|
|
|
22
22
|
<h2>¿Cómo comienzo un proyecto que usa los componentes de desy-html?</h2>
|
|
@@ -38,6 +38,10 @@
|
|
|
38
38
|
|
|
39
39
|
<h2>Changelog (English)</h2>
|
|
40
40
|
<p>What's new in the latest version of desy-html</p>
|
|
41
|
+
<h3>v.10.0.0</h3>
|
|
42
|
+
<ul class="text-sm">
|
|
43
|
+
<li>Updated to Node v20.14.0 and Npm v10.8.1. Audit fix --save to update dependencies to latest.</li>
|
|
44
|
+
</ul>
|
|
41
45
|
<h3>v.9.0.1</h3>
|
|
42
46
|
<ul class="text-sm">
|
|
43
47
|
<li>Minor fixes.</li>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "desy-html",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"description": "desy-html contains the code you need to start building a user interface for Gobierno de Aragón government webapps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://desy.aragon.es/",
|
|
23
23
|
"engines": {
|
|
24
|
-
"npm": ">=8.
|
|
25
|
-
"node": ">=
|
|
24
|
+
"npm": ">=10.8.1",
|
|
25
|
+
"node": ">=20.14.0"
|
|
26
26
|
},
|
|
27
27
|
"main": "src/js/index.js",
|
|
28
28
|
"scripts": {
|
|
@@ -35,30 +35,30 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@tailwindcss/forms": "^0.5.7",
|
|
37
37
|
"@tailwindcss/typography": "^0.5.13",
|
|
38
|
-
"autoprefixer": "^10.
|
|
38
|
+
"autoprefixer": "^10.4.19",
|
|
39
39
|
"hex-rgb": "^5.0.0",
|
|
40
|
-
"highlight.js": "^11.
|
|
41
|
-
"postcss": "^8.
|
|
42
|
-
"postcss-cli": "^10.
|
|
43
|
-
"postcss-import": "^15.
|
|
44
|
-
"tailwindcss": "^3.4.
|
|
40
|
+
"highlight.js": "^11.9.0",
|
|
41
|
+
"postcss": "^8.4.38",
|
|
42
|
+
"postcss-cli": "^10.1.0",
|
|
43
|
+
"postcss-import": "^15.1.0",
|
|
44
|
+
"tailwindcss": "^3.4.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@babel/core": "^7.24.
|
|
48
|
-
"@babel/preset-env": "^7.24.
|
|
47
|
+
"@babel/core": "^7.24.7",
|
|
48
|
+
"@babel/preset-env": "^7.24.7",
|
|
49
49
|
"@babel/register": "^7.24.6",
|
|
50
50
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
51
|
-
"browser-sync": "^
|
|
51
|
+
"browser-sync": "^3.0.2",
|
|
52
52
|
"gulp": "^5.0.0",
|
|
53
53
|
"gulp-babel": "^8.0.0",
|
|
54
54
|
"gulp-clean": "^0.4.0",
|
|
55
55
|
"gulp-clean-css": "^4.3.0",
|
|
56
|
-
"gulp-footer": "^2.0
|
|
56
|
+
"gulp-footer": "^2.1.0",
|
|
57
57
|
"gulp-nunjucks-render": "^2.2.3",
|
|
58
58
|
"gulp-postcss": "^9.0.1",
|
|
59
|
-
"gulp-sourcemaps": "^
|
|
59
|
+
"gulp-sourcemaps": "^2.6.5",
|
|
60
60
|
"gulp-strip-css-comments": "^2.0.0",
|
|
61
|
-
"js-beautify": "^1.
|
|
61
|
+
"js-beautify": "^1.15.1",
|
|
62
62
|
"outdent": "^0.8.0"
|
|
63
63
|
},
|
|
64
64
|
"optionalDependencies": {
|