Skip to content

Commit 77bcff1

Browse files
committed
added package template
1 parent 815ebd3 commit 77bcff1

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

packages/ferric/src/templates/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "PROJECT_NAME"
2+
name = "project_name"
33
version = "1.0.0"
44
edition = "2021"
55
license = "MIT"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "project_name",
3+
"private": true,
4+
"version": "0.1.0",
5+
"main": "dist/project_name.js",
6+
"types": "dist/project_name.d.ts",
7+
"scripts": {
8+
"gen:proj": "ferric init",
9+
"build": "ferric build",
10+
"build:release": "npm run build -- --configuration release"
11+
},
12+
"devDependencies": {
13+
"ferric-cli": "latest"
14+
}
15+
}

0 commit comments

Comments
 (0)