1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

init changelog script (#1883)

* init changelog script

* Create eleven-flies-sing.md
This commit is contained in:
Paweł Kuna
2024-04-30 00:52:12 +02:00
committed by GitHub
parent 6cbe888a71
commit d8605f217c
5 changed files with 36 additions and 31 deletions

View File

@@ -0,0 +1,5 @@
---
"@tabler/core": patch
---
Init changelog script

View File

@@ -2,6 +2,7 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## `1.0.0-beta20` - 2023-08-24 ## `1.0.0-beta20` - 2023-08-24
- Update `bootstrap` to v5.3.1 - Update `bootstrap` to v5.3.1
@@ -109,7 +110,7 @@ All notable changes to this project will be documented in this file.
- exclude `playgrounds` from build - exclude `playgrounds` from build
- update jekyll to v4.3.1 - update jekyll to v4.3.1
- fix: facebook color update - fix: facebook color update
- navbar aria attributes fixes - navbar aria atributes fixes
- fix #808 - `navbar-menu` and `sidebar-menu` has the same `id` - fix #808 - `navbar-menu` and `sidebar-menu` has the same `id`
- fix #1335 - missing color variables usage in `alert` and `btn-ghost-*` - fix #1335 - missing color variables usage in `alert` and `btn-ghost-*`
- move border style to CSS variables - move border style to CSS variables

28
build/changelog.js Normal file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/env node
'use strict'
const fs = require('fs'),
path = require('path'),
YAML = require('yaml');
const content = YAML.parse(fs.readFileSync(path.join(__dirname, '../src/pages/_data/changelog.yml'), 'utf8')).reverse()
let readme = `# Changelog
All notable changes to this project will be documented in this file.\n`
content.forEach((change) => {
readme += `\n\n## \`${change.version}\` - ${change.date}\n\n`
if (change.description) {
readme += `**${change.description}**\n\n`
}
change.changes.forEach((line) => {
readme += `- ${line}\n`
})
console.log(change.version);
})
fs.writeFileSync(path.join(__dirname, '../CHANGELOG.md'), readme)

View File

@@ -22,7 +22,6 @@ const gulp = require('gulp'),
spawn = require('cross-spawn'), spawn = require('cross-spawn'),
fs = require('fs'), fs = require('fs'),
path = require('path'), path = require('path'),
YAML = require('yaml'),
yargs = require('yargs/yargs'), yargs = require('yargs/yargs'),
cp = require('child_process'), cp = require('child_process'),
pkg = require('./package.json'), pkg = require('./package.json'),
@@ -73,34 +72,6 @@ if (!Array.prototype.flat) {
}) })
} }
/**
* Generate CHANGELOG.md
*/
gulp.task('changelog', (cb) => {
const content = YAML.parse(fs.readFileSync('./src/pages/_data/changelog.yml', 'utf8')).reverse()
let readme = `# Changelog
All notable changes to this project will be documented in this file.\n`
content.forEach((change) => {
readme += `\n\n## \`${change.version}\` - ${change.date}\n\n`
if (change.description) {
readme += `**${change.description}**\n\n`
}
change.changes.forEach((line) => {
readme += `- ${line}\n`
})
console.log(change.version);
})
fs.writeFileSync('CHANGELOG.md', readme)
cb()
})
/** /**
* Check unused Jekyll partials * Check unused Jekyll partials
*/ */

View File

@@ -16,7 +16,7 @@
"svg-icons": "node build/import-icons.js", "svg-icons": "node build/import-icons.js",
"bundlewatch": "bundlewatch", "bundlewatch": "bundlewatch",
"storybook": "start-storybook -p 6006", "storybook": "start-storybook -p 6006",
"changelog": "gulp changelog", "changelog": "node build/changelog.js",
"icons": "ncu -u @tabler/icons && pnpm install && gulp svg-icons && git add . && git commit -am \"update icons to v`pnpm info @tabler/icons version`\" && git push", "icons": "ncu -u @tabler/icons && pnpm install && gulp svg-icons && git add . && git commit -am \"update icons to v`pnpm info @tabler/icons version`\" && git push",
"download-images": "node build/download-images.js", "download-images": "node build/download-images.js",
"optimize-images": "for i in ./src/static/photos/*.jpg; do convert \"$i\" -quality 80% \"${i%.jpg}.jpg\"; done", "optimize-images": "for i in ./src/static/photos/*.jpg; do convert \"$i\" -quality 80% \"${i%.jpg}.jpg\"; done",