@saltcorn/sbadmin2 1.6.0 → 1.7.0-alpha.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.
Files changed (2) hide show
  1. package/package.json +4 -18
  2. package/sbadmin2.test.js +0 -8
package/package.json CHANGED
@@ -1,34 +1,20 @@
1
1
  {
2
2
  "name": "@saltcorn/sbadmin2",
3
- "version": "1.6.0",
3
+ "version": "1.7.0-alpha.0",
4
4
  "description": "SB Admin 2 layout plugin",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "test": "jest",
7
+ "test": "echo No tests",
8
8
  "tsc": "echo \"Error: no TypeScript support yet\"",
9
9
  "clean": "echo \"Error: no TypeScript support yet\""
10
10
  },
11
11
  "dependencies": {
12
- "@saltcorn/data": "1.6.0",
13
- "@saltcorn/markup": "1.6.0"
12
+ "@saltcorn/data": "1.7.0-alpha.0",
13
+ "@saltcorn/markup": "1.7.0-alpha.0"
14
14
  },
15
15
  "author": "Tom Nielsen",
16
16
  "license": "MIT",
17
- "devDependencies": {
18
- "jest": "^29.7.0"
19
- },
20
17
  "repository": "github:saltcorn/saltcorn",
21
- "jest": {
22
- "testEnvironment": "node",
23
- "moduleNameMapper": {
24
- "@saltcorn/sqlite/(.*)": "<rootDir>/../sqlite/dist/$1",
25
- "@saltcorn/db-common/(.*)": "<rootDir>/../db-common/dist/$1",
26
- "@saltcorn/data/(.*)": "<rootDir>/../saltcorn-data/dist/$1",
27
- "@saltcorn/types/(.*)": "<rootDir>/../saltcorn-types/dist/$1",
28
- "@saltcorn/markup$": "<rootDir>/../saltcorn-markup/dist",
29
- "@saltcorn/markup/(.*)": "<rootDir>/../saltcorn-markup/dist/$1"
30
- }
31
- },
32
18
  "publishConfig": {
33
19
  "access": "public"
34
20
  }
package/sbadmin2.test.js DELETED
@@ -1,8 +0,0 @@
1
- const { auto_test_plugin } = require("@saltcorn/data/plugin-testing");
2
- const plugin = require(".");
3
-
4
- describe("sbadmin2 plugin", () => {
5
- it("passes auto test", async () => {
6
- await auto_test_plugin(plugin);
7
- });
8
- });