mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
459b6fa72b
* Refactor local-storage async refactor local storage search stream Remove async from local-storage, refactor search with streams refactor search with undici fetch finish search refactor stream multiple request to single stream refactor storage types remove async dependency #1225 add score and refactor metadata remove old search async fix missing stream local data clean up clean up refactor folder search format fix some test fix issue on publish filter preview update ci delete package folder refactor refactor get packages methods fix tests fix lock file add changeset fix test windows disable some test update package json versions * fix merge * fix e2e cli * restore e2e * Update process.ts * Update process.ts * add improvement * format * Update utils.ts * test * test * Update search.spec.ts * Update search.spec.ts * Update search.spec.ts * test * Update ci.yml * clean up * fix tests * Update tags.ts * Update index.spec.ts * document changeset * format
52 lines
2.4 KiB
Plaintext
52 lines
2.4 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Utilities parseReadme should parse makrdown text to html template 1`] = `
|
|
"<h1 id=\\"project-title\\">Project Title</h1>
|
|
<p>One Paragraph of project description goes here</p>
|
|
<h2 id=\\"getting-started\\">Getting Started</h2>
|
|
<p>These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.</p>
|
|
<h3 id=\\"prerequisites\\">Prerequisites</h3>
|
|
<p>What things you need to install the software and how to install them</p>
|
|
<pre><code>Give examples
|
|
</code></pre>
|
|
<h3 id=\\"installing\\">Installing</h3>
|
|
<p>A step by step series of examples that tell you how to get a development env running</p>
|
|
<p>Say what the step will be</p>
|
|
<pre><code>Give the example
|
|
</code></pre>
|
|
<p>And repeat</p>
|
|
<pre><code>until finished
|
|
</code></pre>
|
|
<p>End with an example of getting some data out of the system or using it for a little demo</p>
|
|
<h2 id=\\"running-the-tests\\">Running the tests</h2>
|
|
<p>Explain how to run the automated tests for this system</p>
|
|
<h3 id=\\"break-down-into-end-to-end-tests\\">Break down into end to end tests</h3>
|
|
<p>Explain what these tests test and why</p>
|
|
<pre><code>Give an example
|
|
</code></pre>
|
|
<h3 id=\\"and-coding-style-tests\\">And coding style tests</h3>
|
|
<p>Explain what these tests test and why</p>
|
|
<pre><code>Give an example
|
|
</code></pre>
|
|
<h2 id=\\"deployment\\">Deployment</h2>
|
|
<p>Add additional notes about how to deploy this on a live system</p>
|
|
<h2 id=\\"built-with\\">Built With</h2>
|
|
<ul>
|
|
<li>The web framework used</li>
|
|
<li>Dependency Management</li>
|
|
<li>Used to generate RSS Feeds</li>
|
|
</ul>
|
|
<h2 id=\\"contributing\\">Contributing</h2>
|
|
<p>Please read <a href=\\"CONTRIBUTING.md\\">CONTRIBUTING.md</a> for details on our code of conduct, and the process for submitting pull requests to us.</p>
|
|
<h2 id=\\"versioning\\">Versioning</h2>
|
|
<p>We use <a href=\\"http://semver.org/\\">SemVer</a> for versioning. For the versions available, see the <a href=\\"https://github.com/your/project/tags\\">tags on this repository</a>.</p>
|
|
<h2 id=\\"license\\">License</h2>
|
|
<p>This project is licensed under the MIT License - see the <a href=\\"LICENSE.md\\">LICENSE.md</a> file for details</p>
|
|
<h2 id=\\"acknowledgments\\">Acknowledgments</h2>
|
|
<ul>
|
|
<li>Hat tip to anyone whose code was used</li>
|
|
<li>Inspiration</li>
|
|
<li>etc</li>
|
|
</ul>"
|
|
`;
|