mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-02 03:25:53 +01:00
fix: add readme back to npm package which was mistakenly removed (#6484)
* fix: remove update readme script from release * update docs * remove * fix
This commit is contained in:
parent
1d0653ce50
commit
89304c9f66
@ -1,22 +1,9 @@
|
|||||||
const fs = require("fs");
|
|
||||||
const { execSync } = require("child_process");
|
const { execSync } = require("child_process");
|
||||||
|
|
||||||
const excalidrawDir = `${__dirname}/../src/packages/excalidraw`;
|
const excalidrawDir = `${__dirname}/../src/packages/excalidraw`;
|
||||||
const excalidrawPackage = `${excalidrawDir}/package.json`;
|
const excalidrawPackage = `${excalidrawDir}/package.json`;
|
||||||
const pkg = require(excalidrawPackage);
|
const pkg = require(excalidrawPackage);
|
||||||
|
|
||||||
const originalReadMe = fs.readFileSync(`${excalidrawDir}/README.md`, "utf8");
|
|
||||||
|
|
||||||
const updateReadme = () => {
|
|
||||||
const excalidrawIndex = originalReadMe.indexOf("### Excalidraw");
|
|
||||||
|
|
||||||
// remove note for stable readme
|
|
||||||
const data = originalReadMe.slice(excalidrawIndex);
|
|
||||||
|
|
||||||
// update readme
|
|
||||||
fs.writeFileSync(`${excalidrawDir}/README.md`, data, "utf8");
|
|
||||||
};
|
|
||||||
|
|
||||||
const publish = () => {
|
const publish = () => {
|
||||||
try {
|
try {
|
||||||
execSync(`yarn --frozen-lockfile`);
|
execSync(`yarn --frozen-lockfile`);
|
||||||
@ -30,15 +17,8 @@ const publish = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const release = () => {
|
const release = () => {
|
||||||
updateReadme();
|
|
||||||
console.info("Note for stable readme removed");
|
|
||||||
|
|
||||||
publish();
|
publish();
|
||||||
console.info(`Published ${pkg.version}!`);
|
console.info(`Published ${pkg.version}!`);
|
||||||
|
|
||||||
// revert readme after release
|
|
||||||
fs.writeFileSync(`${excalidrawDir}/README.md`, originalReadMe, "utf8");
|
|
||||||
console.info("Readme reverted");
|
|
||||||
};
|
};
|
||||||
|
|
||||||
release();
|
release();
|
||||||
|
@ -11,6 +11,12 @@ The change should be grouped under one of the below section and must contain PR
|
|||||||
Please add the latest change on the top under the correct section.
|
Please add the latest change on the top under the correct section.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
### Docs
|
||||||
|
|
||||||
|
- Add the readme back to the package which was mistakenly removed [#6484](https://github.com/excalidraw/excalidraw/pull/6484)
|
||||||
|
|
||||||
## 0.15.0 (2023-04-18)
|
## 0.15.0 (2023-04-18)
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
Loading…
Reference in New Issue
Block a user