@openwebf/webf 0.22.3 → 0.22.4

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 (43) hide show
  1. package/dist/IDLBlob.js +17 -0
  2. package/dist/analyzer.js +578 -0
  3. package/dist/analyzer_original.js +467 -0
  4. package/dist/commands.js +704 -0
  5. package/dist/dart.js +300 -0
  6. package/dist/declaration.js +63 -0
  7. package/dist/generator.js +466 -0
  8. package/dist/logger.js +103 -0
  9. package/dist/react.js +283 -0
  10. package/dist/utils.js +127 -0
  11. package/dist/vue.js +159 -0
  12. package/package.json +8 -1
  13. package/src/dart.ts +138 -7
  14. package/templates/class.dart.tpl +7 -2
  15. package/templates/react.package.json.tpl +1 -1
  16. package/CLAUDE.md +0 -206
  17. package/README-zhCN.md +0 -256
  18. package/TYPING_GUIDE.md +0 -208
  19. package/coverage/clover.xml +0 -1295
  20. package/coverage/coverage-final.json +0 -12
  21. package/coverage/lcov-report/IDLBlob.ts.html +0 -142
  22. package/coverage/lcov-report/analyzer.ts.html +0 -2158
  23. package/coverage/lcov-report/analyzer_original.ts.html +0 -1450
  24. package/coverage/lcov-report/base.css +0 -224
  25. package/coverage/lcov-report/block-navigation.js +0 -87
  26. package/coverage/lcov-report/commands.ts.html +0 -700
  27. package/coverage/lcov-report/dart.ts.html +0 -490
  28. package/coverage/lcov-report/declaration.ts.html +0 -337
  29. package/coverage/lcov-report/favicon.png +0 -0
  30. package/coverage/lcov-report/generator.ts.html +0 -1171
  31. package/coverage/lcov-report/index.html +0 -266
  32. package/coverage/lcov-report/logger.ts.html +0 -424
  33. package/coverage/lcov-report/prettify.css +0 -1
  34. package/coverage/lcov-report/prettify.js +0 -2
  35. package/coverage/lcov-report/react.ts.html +0 -619
  36. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  37. package/coverage/lcov-report/sorter.js +0 -196
  38. package/coverage/lcov-report/utils.ts.html +0 -466
  39. package/coverage/lcov-report/vue.ts.html +0 -613
  40. package/coverage/lcov.info +0 -2149
  41. package/global.d.ts +0 -2
  42. package/jest.config.js +0 -24
  43. package/tsconfig.json +0 -30
package/global.d.ts DELETED
@@ -1,2 +0,0 @@
1
- type double = number;
2
- type int = number;
package/jest.config.js DELETED
@@ -1,24 +0,0 @@
1
- module.exports = {
2
- preset: 'ts-jest',
3
- testEnvironment: 'node',
4
- roots: ['<rootDir>/src', '<rootDir>/test'],
5
- testMatch: ['**/__tests__/**/*.ts', '**/*.test.ts', '**/*.spec.ts'],
6
- collectCoverageFrom: [
7
- 'src/**/*.ts',
8
- '!src/**/*.d.ts',
9
- '!src/**/__tests__/**',
10
- ],
11
- coverageThreshold: {
12
- global: {
13
- branches: 70,
14
- functions: 70,
15
- lines: 70,
16
- statements: 70,
17
- },
18
- },
19
- moduleFileExtensions: ['ts', 'js', 'json'],
20
- transform: {
21
- '^.+\\.ts$': 'ts-jest',
22
- },
23
- testTimeout: 10000,
24
- };
package/tsconfig.json DELETED
@@ -1,30 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "target": "es6",
5
- "lib": [
6
- "es6",
7
- "es7",
8
- "DOM"
9
- ],
10
- "allowJs": false,
11
- "moduleResolution": "node",
12
- "forceConsistentCasingInFileNames": false,
13
- "noImplicitReturns": true,
14
- "noImplicitThis": true,
15
- "noImplicitAny": true,
16
- "strictNullChecks": true,
17
- "noUnusedLocals": false,
18
- "experimentalDecorators": true,
19
- "emitDecoratorMetadata": true,
20
- "esModuleInterop": true,
21
- "allowSyntheticDefaultImports": true,
22
- "declaration": false,
23
- "outDir": "./dist"
24
- },
25
- "include": [
26
- "src/**/*.ts"
27
- ],
28
- "exclude": [
29
- ]
30
- }