pulse-js-framework 1.4.0 → 1.4.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/README.md +414 -414
- package/cli/analyze.js +499 -499
- package/cli/build.js +341 -341
- package/cli/format.js +704 -704
- package/cli/index.js +398 -398
- package/cli/lint.js +642 -642
- package/cli/utils/file-utils.js +298 -298
- package/compiler/lexer.js +766 -766
- package/compiler/parser.js +1797 -1797
- package/compiler/transformer.js +1332 -1332
- package/index.js +1 -1
- package/package.json +68 -68
- package/runtime/router.js +596 -596
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "pulse-js-framework",
|
|
3
|
-
"version": "1.4.
|
|
4
|
-
"description": "A declarative DOM framework with CSS selector-based structure and reactive pulsations",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"pulse": "cli/index.js"
|
|
9
|
-
},
|
|
10
|
-
"exports": {
|
|
11
|
-
".": "./index.js",
|
|
12
|
-
"./runtime": "./runtime/index.js",
|
|
13
|
-
"./runtime/*": "./runtime/*.js",
|
|
14
|
-
"./compiler": "./compiler/index.js",
|
|
15
|
-
"./vite": "./loader/vite-plugin.js"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"index.js",
|
|
19
|
-
"cli/",
|
|
20
|
-
"runtime/",
|
|
21
|
-
"compiler/",
|
|
22
|
-
"loader/",
|
|
23
|
-
"mobile/",
|
|
24
|
-
"README.md",
|
|
25
|
-
"LICENSE"
|
|
26
|
-
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"test": "npm run test:compiler && npm run test:pulse && npm run test:dom && npm run test:lint && npm run test:format && npm run test:analyze",
|
|
29
|
-
"test:compiler": "node test/compiler.test.js",
|
|
30
|
-
"test:pulse": "node test/pulse.test.js",
|
|
31
|
-
"test:dom": "node test/dom.test.js",
|
|
32
|
-
"test:lint": "node test/lint.test.js",
|
|
33
|
-
"test:format": "node test/format.test.js",
|
|
34
|
-
"test:analyze": "node test/analyze.test.js",
|
|
35
|
-
"build:netlify": "node scripts/build-netlify.js"
|
|
36
|
-
},
|
|
37
|
-
"keywords": [
|
|
38
|
-
"framework",
|
|
39
|
-
"frontend",
|
|
40
|
-
"reactive",
|
|
41
|
-
"declarative",
|
|
42
|
-
"dom",
|
|
43
|
-
"pulse",
|
|
44
|
-
"css-selectors",
|
|
45
|
-
"dsl",
|
|
46
|
-
"ui",
|
|
47
|
-
"javascript",
|
|
48
|
-
"spa",
|
|
49
|
-
"signals"
|
|
50
|
-
],
|
|
51
|
-
"author": "Vincent Hirtz <hirtzvincent@gmail.com>",
|
|
52
|
-
"license": "MIT",
|
|
53
|
-
"repository": {
|
|
54
|
-
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/vincenthirtz/pulse-js-framework.git"
|
|
56
|
-
},
|
|
57
|
-
"homepage": "https://github.com/vincenthirtz/pulse-js-framework#readme",
|
|
58
|
-
"bugs": {
|
|
59
|
-
"url": "https://github.com/vincenthirtz/pulse-js-framework/issues"
|
|
60
|
-
},
|
|
61
|
-
"engines": {
|
|
62
|
-
"node": ">=18.0.0"
|
|
63
|
-
},
|
|
64
|
-
"dependencies": {},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"linkedom": "^0.16.8"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "pulse-js-framework",
|
|
3
|
+
"version": "1.4.2",
|
|
4
|
+
"description": "A declarative DOM framework with CSS selector-based structure and reactive pulsations",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"pulse": "cli/index.js"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./index.js",
|
|
12
|
+
"./runtime": "./runtime/index.js",
|
|
13
|
+
"./runtime/*": "./runtime/*.js",
|
|
14
|
+
"./compiler": "./compiler/index.js",
|
|
15
|
+
"./vite": "./loader/vite-plugin.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"index.js",
|
|
19
|
+
"cli/",
|
|
20
|
+
"runtime/",
|
|
21
|
+
"compiler/",
|
|
22
|
+
"loader/",
|
|
23
|
+
"mobile/",
|
|
24
|
+
"README.md",
|
|
25
|
+
"LICENSE"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"test": "npm run test:compiler && npm run test:pulse && npm run test:dom && npm run test:lint && npm run test:format && npm run test:analyze",
|
|
29
|
+
"test:compiler": "node test/compiler.test.js",
|
|
30
|
+
"test:pulse": "node test/pulse.test.js",
|
|
31
|
+
"test:dom": "node test/dom.test.js",
|
|
32
|
+
"test:lint": "node test/lint.test.js",
|
|
33
|
+
"test:format": "node test/format.test.js",
|
|
34
|
+
"test:analyze": "node test/analyze.test.js",
|
|
35
|
+
"build:netlify": "node scripts/build-netlify.js"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"framework",
|
|
39
|
+
"frontend",
|
|
40
|
+
"reactive",
|
|
41
|
+
"declarative",
|
|
42
|
+
"dom",
|
|
43
|
+
"pulse",
|
|
44
|
+
"css-selectors",
|
|
45
|
+
"dsl",
|
|
46
|
+
"ui",
|
|
47
|
+
"javascript",
|
|
48
|
+
"spa",
|
|
49
|
+
"signals"
|
|
50
|
+
],
|
|
51
|
+
"author": "Vincent Hirtz <hirtzvincent@gmail.com>",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/vincenthirtz/pulse-js-framework.git"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/vincenthirtz/pulse-js-framework#readme",
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/vincenthirtz/pulse-js-framework/issues"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=18.0.0"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"linkedom": "^0.16.8"
|
|
67
|
+
}
|
|
68
|
+
}
|