adapt-cli 3.0.2 → 3.0.6
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/.bowerrc +2 -2
- package/.eslintignore +1 -1
- package/.eslintrc.json +14 -14
- package/.github/CONTRIBUTING.md +8 -0
- package/.github/ISSUE_TEMPLATE.md +17 -0
- package/.github/pull_request_template.md +25 -0
- package/.github/workflows/addtomainproject.yml +19 -0
- package/.github/workflows/releases.yml +25 -0
- package/.travis.yml +46 -46
- package/README.md +266 -266
- package/bin/adapt.js +3 -3
- package/json/help-create/component.json +9 -9
- package/json/help-create/course.json +9 -9
- package/json/help-create/question.json +9 -9
- package/json/help-create.json +12 -12
- package/json/help-devinstall.json +9 -9
- package/json/help-install.json +10 -10
- package/json/help-ls.json +7 -7
- package/json/help-register.json +7 -7
- package/json/help-rename.json +7 -7
- package/json/help-search.json +8 -8
- package/json/help-uninstall.json +7 -7
- package/json/help-unregister.json +8 -8
- package/json/help-update.json +12 -12
- package/json/help-version.json +7 -7
- package/json/help.json +19 -19
- package/lib/api.js +260 -260
- package/lib/cli.js +69 -69
- package/lib/commands/authenticate.js +18 -18
- package/lib/commands/create/component.js +64 -64
- package/lib/commands/create/course.js +26 -26
- package/lib/commands/create/question.js +18 -18
- package/lib/commands/create.js +94 -85
- package/lib/commands/devinstall.js +35 -35
- package/lib/commands/help.js +31 -31
- package/lib/commands/install.js +16 -16
- package/lib/commands/ls.js +9 -9
- package/lib/commands/register.js +11 -11
- package/lib/commands/rename.js +14 -14
- package/lib/commands/search.js +11 -11
- package/lib/commands/uninstall.js +9 -9
- package/lib/commands/unregister.js +12 -12
- package/lib/commands/update.js +12 -12
- package/lib/commands/version.js +13 -13
- package/lib/integration/AdaptFramework/build.js +42 -42
- package/lib/integration/AdaptFramework/clone.js +27 -27
- package/lib/integration/AdaptFramework/deleteSrcCore.js +9 -9
- package/lib/integration/AdaptFramework/deleteSrcCourse.js +9 -9
- package/lib/integration/AdaptFramework/download.js +21 -21
- package/lib/integration/AdaptFramework/erase.js +34 -34
- package/lib/integration/AdaptFramework/getLatestVersion.js +79 -79
- package/lib/integration/AdaptFramework/npmInstall.js +21 -21
- package/lib/integration/AdaptFramework.js +19 -19
- package/lib/integration/Plugin.js +404 -404
- package/lib/integration/PluginManagement/autenticate.js +56 -56
- package/lib/integration/PluginManagement/install.js +224 -224
- package/lib/integration/PluginManagement/print.js +52 -52
- package/lib/integration/PluginManagement/register.js +130 -130
- package/lib/integration/PluginManagement/rename.js +101 -101
- package/lib/integration/PluginManagement/schemas.js +8 -8
- package/lib/integration/PluginManagement/search.js +46 -46
- package/lib/integration/PluginManagement/uninstall.js +141 -141
- package/lib/integration/PluginManagement/unregister.js +101 -101
- package/lib/integration/PluginManagement/update.js +224 -224
- package/lib/integration/PluginManagement.js +21 -21
- package/lib/integration/Project.js +146 -146
- package/lib/integration/Target.js +299 -299
- package/lib/integration/getBowerRegistryConfig.js +34 -34
- package/lib/logger.js +28 -28
- package/lib/util/JSONReadValidate.js +34 -34
- package/lib/util/constants.js +38 -38
- package/lib/util/createPromptTask.js +7 -7
- package/lib/util/download.js +45 -45
- package/lib/util/errors.js +58 -58
- package/lib/util/extract.js +24 -24
- package/lib/util/getDirNameFromImportMeta.js +6 -6
- package/lib/util/promises.js +36 -36
- package/package.json +74 -40
@@ -1,19 +1,19 @@
|
|
1
|
-
import build from './AdaptFramework/build.js'
|
2
|
-
import getLatestVersion from './AdaptFramework/getLatestVersion.js'
|
3
|
-
import clone from './AdaptFramework/clone.js'
|
4
|
-
import erase from './AdaptFramework/erase.js'
|
5
|
-
import download from './AdaptFramework/download.js'
|
6
|
-
import npmInstall from './AdaptFramework/npmInstall.js'
|
7
|
-
import deleteSrcCourse from './AdaptFramework/deleteSrcCourse.js'
|
8
|
-
import deleteSrcCore from './AdaptFramework/deleteSrcCore.js'
|
9
|
-
|
10
|
-
export {
|
11
|
-
build,
|
12
|
-
getLatestVersion,
|
13
|
-
clone,
|
14
|
-
erase,
|
15
|
-
download,
|
16
|
-
npmInstall,
|
17
|
-
deleteSrcCourse,
|
18
|
-
deleteSrcCore
|
19
|
-
}
|
1
|
+
import build from './AdaptFramework/build.js'
|
2
|
+
import getLatestVersion from './AdaptFramework/getLatestVersion.js'
|
3
|
+
import clone from './AdaptFramework/clone.js'
|
4
|
+
import erase from './AdaptFramework/erase.js'
|
5
|
+
import download from './AdaptFramework/download.js'
|
6
|
+
import npmInstall from './AdaptFramework/npmInstall.js'
|
7
|
+
import deleteSrcCourse from './AdaptFramework/deleteSrcCourse.js'
|
8
|
+
import deleteSrcCore from './AdaptFramework/deleteSrcCore.js'
|
9
|
+
|
10
|
+
export {
|
11
|
+
build,
|
12
|
+
getLatestVersion,
|
13
|
+
clone,
|
14
|
+
erase,
|
15
|
+
download,
|
16
|
+
npmInstall,
|
17
|
+
deleteSrcCourse,
|
18
|
+
deleteSrcCore
|
19
|
+
}
|