@micropress/theme-sdk 0.0.1 → 0.1.0
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/dist/cli/index.js +1 -1
- package/package.json +3 -2
package/dist/cli/index.js
CHANGED
|
@@ -703,7 +703,7 @@ function createZipManually(sourceDir, outputPath) {
|
|
|
703
703
|
}
|
|
704
704
|
|
|
705
705
|
// cli/index.ts
|
|
706
|
-
var VERSION = "0.0
|
|
706
|
+
var VERSION = "0.1.0";
|
|
707
707
|
var program = new import_commander.Command();
|
|
708
708
|
program.name("micropress-theme").description("CLI for building MicroPress themes").version(VERSION);
|
|
709
709
|
program.command("init <name>").description("Initialize a new theme project").option("-d, --directory <dir>", "Directory to create theme in", ".").option("--no-git", "Skip git initialization").action(initCommand);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micropress/theme-sdk",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "SDK for building MicroPress themes",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -47,7 +47,8 @@
|
|
|
47
47
|
"license": "MIT",
|
|
48
48
|
"repository": {
|
|
49
49
|
"type": "git",
|
|
50
|
-
"url": "https://github.com/JWThewes/micropress-theme-sdk.git"
|
|
50
|
+
"url": "https://github.com/JWThewes/micropress-theme-sdk.git",
|
|
51
|
+
"directory": "sdk"
|
|
51
52
|
},
|
|
52
53
|
"homepage": "https://github.com/JWThewes/micropress-theme-sdk#readme",
|
|
53
54
|
"bugs": {
|