element-vir 4.1.3 → 4.1.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/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './functional-element/define-functional-element';
2
2
  export * from './functional-element/directives/assign-with-clean-up.directive';
3
3
  export * from './functional-element/directives/assign.directive';
4
+ export * from './functional-element/directives/directive-util';
4
5
  export * from './functional-element/directives/listen.directive';
5
6
  export * from './functional-element/directives/on-dom-created.directive';
6
7
  export * from './functional-element/directives/on-resize.directive';
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './functional-element/define-functional-element';
2
2
  export * from './functional-element/directives/assign-with-clean-up.directive';
3
3
  export * from './functional-element/directives/assign.directive';
4
+ export * from './functional-element/directives/directive-util';
4
5
  export * from './functional-element/directives/listen.directive';
5
6
  export * from './functional-element/directives/on-dom-created.directive';
6
7
  export * from './functional-element/directives/on-resize.directive';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "element-vir",
3
- "version": "4.1.3",
3
+ "version": "4.1.6",
4
4
  "keywords": [
5
5
  "custom",
6
6
  "web",
@@ -31,22 +31,17 @@
31
31
  "prepublishOnly": "npm run compile && npm run test:full",
32
32
  "spellcheck": "virmator spellcheck",
33
33
  "start": "npm install && vite --force --config ./src/vite/vite.config.ts",
34
- "test": "npm run type-check && npm run jest",
34
+ "test": "npm run type-check && virmator test --no-write-config",
35
35
  "test:full": "npm test && npm run spellcheck && virmator format check && npm run update-docs -- --check",
36
36
  "type-check": "tsc --noEmit",
37
37
  "update-docs": "virmator code-in-markdown README.md --index src/index.ts"
38
38
  },
39
39
  "dependencies": {
40
- "augment-vir": "^1.5.1",
41
- "lit": "^2.2.0"
40
+ "augment-vir": "1.14.1",
41
+ "lit": "2.2.2"
42
42
  },
43
43
  "devDependencies": {
44
- "@types/jest": "^27.4.0",
45
- "jest": "^27.5.1",
46
- "ts-jest": "^27.1.3",
47
- "ts-node": "^10.5.0",
48
- "typescript": "^4.5.5",
49
- "virmator": "^1.4.4",
50
- "vite": "^2.8.4"
44
+ "virmator": "2.0.6",
45
+ "vite": "2.9.5"
51
46
  }
52
47
  }