ossplate 0.1.3 → 0.1.4
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/bin/darwin-arm64/ossplate +0 -0
- package/package.json +1 -1
- package/scaffold/README.md +1 -1
- package/scaffold/assets/illustrations/chestplate.svg +6 -0
- package/scaffold/core-rs/Cargo.lock +1 -1
- package/scaffold/core-rs/Cargo.toml +1 -1
- package/scaffold/core-rs/src/main.rs +3 -3
- package/scaffold/wrapper-js/README.md +1 -1
- package/scaffold/wrapper-js/bin/darwin-arm64/ossplate +0 -0
- package/scaffold/wrapper-js/package-lock.json +2 -2
- package/scaffold/wrapper-js/package.json +1 -1
- package/scaffold/wrapper-py/README.md +1 -1
- package/scaffold/wrapper-py/pyproject.toml +1 -1
- package/scaffold/wrapper-py/src/ossplate/bin/darwin-arm64/ossplate +0 -0
- package/scaffold/assets/illustrations/armour05platemail.png +0 -0
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Ossplate
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://raw.githubusercontent.com/stefdevscore/ossplate/dev/assets/illustrations/
|
|
4
|
+
<img src="https://raw.githubusercontent.com/stefdevscore/ossplate/dev/assets/illustrations/chestplate.svg" alt="Ossplate armor" width="320">
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
`ossplate` helps you start and maintain a project that ships the same CLI through Rust, npm, and PyPI.
|
|
Binary file
|
package/package.json
CHANGED
package/scaffold/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Build one project, ship it everywhere.
|
|
|
5
5
|
<!-- ossplate:readme-identity:end -->
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<img src="https://raw.githubusercontent.com/stefdevscore/ossplate/dev/assets/illustrations/
|
|
8
|
+
<img src="https://raw.githubusercontent.com/stefdevscore/ossplate/dev/assets/illustrations/chestplate.svg" alt="Ossplate armor" width="360">
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
`ossplate` helps you start and maintain a project that ships the same CLI through Rust, npm, and PyPI.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="title desc">
|
|
3
|
+
<title id="title">Ossplate chest armor</title>
|
|
4
|
+
<desc id="desc">A charcoal gray chestplate with shoulder guards.</desc>
|
|
5
|
+
<path fill="#4B5563" d="M156.7 25.83L89 39.38c-.1 58.57-1.74 119.32-43.49 167.22C104.4 246.5 189 260.7 247 248.8v-99L108.3 88.22l7.4-16.44L256 134.2l140.3-62.42 7.4 16.44L265 149.8v99c58 11.9 142.6-2.3 201.5-42.2-41.8-47.9-43.4-108.65-43.5-167.22l-67.7-13.55c-12.9 13.88-20.6 28.15-32.9 40.53C308.9 79.78 289.5 89 256 89c-33.5 0-52.9-9.22-66.4-22.64-12.3-12.38-20-26.65-32.9-40.53zM53.88 232.9C75.96 281 96.07 336.6 102.7 392.8l65 22.8c4.2-52.7 28.2-104 63.7-146.1-55.1 6.3-122.7-5.8-177.52-36.6zm404.22 0c-54.8 30.8-122.4 42.9-177.5 36.6 35.5 42.1 59.5 93.4 63.7 146.1l65.2-22.9c6.6-56.8 26.6-111.8 48.6-159.8zM256 269c-40.5 43.1-67.7 97.9-70.7 152.7l61.7 21.6V336h18v107.3l61.7-21.6c-3.1-54.8-30.2-109.6-70.7-152.7zm151.7 143.4L297 451.1v18.8l110.2-44.1c.1-4.5.3-8.9.5-13.4zm-303.3.1c.3 4.5.4 8.9.5 13.4l110.1 44v-18.7l-110.6-38.7zM279 457.4l-23 8.1-23-8v19.6l23 9.2 23-9.2v-19.7z"/>
|
|
6
|
+
</svg>
|
|
@@ -1044,7 +1044,7 @@ fn render_wrapper_readme(_language: &str, config: &ToolConfig) -> String {
|
|
|
1044
1044
|
let image_url = github_raw_url(
|
|
1045
1045
|
&config.project.repository,
|
|
1046
1046
|
"dev",
|
|
1047
|
-
"assets/illustrations/
|
|
1047
|
+
"assets/illustrations/chestplate.svg",
|
|
1048
1048
|
);
|
|
1049
1049
|
format!(
|
|
1050
1050
|
r#"# {name}
|
|
@@ -1424,7 +1424,7 @@ mod tests {
|
|
|
1424
1424
|
target.join("core-rs/Cargo.toml"),
|
|
1425
1425
|
r#"[package]
|
|
1426
1426
|
name = "bad-core"
|
|
1427
|
-
version = "0.1.
|
|
1427
|
+
version = "0.1.4"
|
|
1428
1428
|
"#,
|
|
1429
1429
|
)
|
|
1430
1430
|
.unwrap();
|
|
@@ -1560,7 +1560,7 @@ command = "ossplate"
|
|
|
1560
1560
|
root.join("core-rs/Cargo.toml"),
|
|
1561
1561
|
r#"[package]
|
|
1562
1562
|
name = "ossplate"
|
|
1563
|
-
version = "0.1.
|
|
1563
|
+
version = "0.1.4"
|
|
1564
1564
|
edition = "2021"
|
|
1565
1565
|
authors = ["Stef <stefdevscore@github.com>"]
|
|
1566
1566
|
description = "A practical baseline for shipping one project across Cargo, npm, and PyPI without starting from scratch every time."
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Ossplate
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://raw.githubusercontent.com/stefdevscore/ossplate/dev/assets/illustrations/
|
|
4
|
+
<img src="https://raw.githubusercontent.com/stefdevscore/ossplate/dev/assets/illustrations/chestplate.svg" alt="Ossplate armor" width="320">
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
`ossplate` helps you start and maintain a project that ships the same CLI through Rust, npm, and PyPI.
|
|
Binary file
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ossplate",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "ossplate",
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.4",
|
|
10
10
|
"license": "Unlicense",
|
|
11
11
|
"bin": {
|
|
12
12
|
"ossplate": "bin/ossplate.js"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Ossplate
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://raw.githubusercontent.com/stefdevscore/ossplate/dev/assets/illustrations/
|
|
4
|
+
<img src="https://raw.githubusercontent.com/stefdevscore/ossplate/dev/assets/illustrations/chestplate.svg" alt="Ossplate armor" width="320">
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
`ossplate` helps you start and maintain a project that ships the same CLI through Rust, npm, and PyPI.
|
|
Binary file
|
|
Binary file
|