maro-plugin-http 1.1.0 → 1.1.2

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/src/index.js CHANGED
@@ -8,6 +8,7 @@ const config_1 = require("./lib/config");
8
8
  const Plugin = {
9
9
  name: "maro-plugin-http",
10
10
  onLoad() {
11
+ maro_1.PathRegistry.register("http", "Repository containing HTTP collection files");
11
12
  maro_1.ConfigRegistry.register(new config_1.HttpConfig());
12
13
  if (maro_1.Config.getView().get("http.generate_swagger"))
13
14
  new generate_swagger_1.GenerateSwagger().register();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maro-plugin-http",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "main": "./dist/src/lib/index.js",
5
5
  "types": "./dist/src/lib/index.d.ts",
6
6
  "type": "commonjs",
@@ -10,8 +10,7 @@
10
10
  "scripts": {
11
11
  "build": "tsc --project ./tsconfig.json",
12
12
  "start": "node ./dist/src/index.js",
13
- "clean": "rm -rf node_modules package-lock.json",
14
- "import": "npm run clean; cp ../../maro/maro-2.0.0.tgz ./maro-2.0.0.tgz; npm install"
13
+ "clean": "rm -rf node_modules package-lock.json"
15
14
  },
16
15
  "maro": {
17
16
  "plugin": "./dist/src/index.js"