@form8ion/project 13.0.7 → 13.1.0-beta.1
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 +6 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -79,7 +79,6 @@ import {lift, scaffold, questionNames} from '@form8ion/project';
|
|
|
79
79
|
#### Execute
|
|
80
80
|
|
|
81
81
|
```javascript
|
|
82
|
-
(async () => {
|
|
83
82
|
await scaffold({
|
|
84
83
|
decisions: {
|
|
85
84
|
[questionNames.PROJECT_NAME]: 'my-project',
|
|
@@ -96,8 +95,12 @@ import {lift, scaffold, questionNames} from '@form8ion/project';
|
|
|
96
95
|
}
|
|
97
96
|
});
|
|
98
97
|
|
|
99
|
-
await lift({
|
|
100
|
-
|
|
98
|
+
await lift({
|
|
99
|
+
projectRoot: process.cwd(),
|
|
100
|
+
results: {},
|
|
101
|
+
enhancers: {foo: {test: () => true, lift: () => ({})}},
|
|
102
|
+
vcs: {}
|
|
103
|
+
});
|
|
101
104
|
```
|
|
102
105
|
|
|
103
106
|
### API
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@form8ion/project",
|
|
3
3
|
"description": "opinionated scaffolder for new projects",
|
|
4
|
-
"version": "13.0.
|
|
4
|
+
"version": "13.1.0-beta.1",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.mjs",
|
|
7
7
|
"exports": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
|
-
"node": "^14.15"
|
|
50
|
+
"node": "^14.15 || ^16"
|
|
51
51
|
},
|
|
52
52
|
"files": [
|
|
53
53
|
"lib/",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
},
|
|
98
98
|
"dependencies": {
|
|
99
99
|
"@form8ion/core": "^1.6.0-alpha.2",
|
|
100
|
-
"@form8ion/nodegit-wrapper": "^1.0.
|
|
100
|
+
"@form8ion/nodegit-wrapper": "^1.1.0-alpha.1",
|
|
101
101
|
"@form8ion/overridable-prompts": "^1.1.0",
|
|
102
102
|
"@form8ion/readme": "2.0.0",
|
|
103
103
|
"@form8ion/results-reporter": "^1.1.0",
|