@srfnstack/fntags 0.1.6 → 0.3.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.
package/LICENSE.txt CHANGED
File without changes
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # fntags
2
2
 
3
- > not a regular f'n framework
3
+ > not your usual f'n framework
4
4
 
5
5
  ### [Documentation](https://srfnstack.github.io/fntags)
6
6
 
package/index.js CHANGED
@@ -1,122 +1,3 @@
1
- export {
2
- fnstate, h
3
- } from './src/fntags.mjs'
4
- export {
5
- route, fnlink, goTo, routeSwitch, pathParameters, pathState, setRootPath
6
- } from './src/fnroute.mjs'
7
- export {
8
- a,
9
- abbr,
10
- acronym,
11
- address,
12
- area,
13
- article,
14
- aside,
15
- audio,
16
- b,
17
- base,
18
- bdi,
19
- bdo,
20
- big,
21
- blockquote,
22
- br,
23
- button,
24
- canvas,
25
- caption,
26
- cite,
27
- code,
28
- col,
29
- colgroup,
30
- data,
31
- datalist,
32
- dd,
33
- del,
34
- details,
35
- dfn,
36
- dialog,
37
- div,
38
- dl,
39
- dt,
40
- em,
41
- embed,
42
- fieldset,
43
- figcaption,
44
- figure,
45
- footer,
46
- form,
47
- frame,
48
- frameset,
49
- h1,
50
- h2,
51
- h3,
52
- h4,
53
- h5,
54
- h6,
55
- header,
56
- hr,
57
- i,
58
- iframe,
59
- img,
60
- input,
61
- ins,
62
- kbd,
63
- label,
64
- legend,
65
- li,
66
- link,
67
- main,
68
- map,
69
- mark,
70
- marquee,
71
- menu,
72
- meta,
73
- meter,
74
- nav
75
- ,
76
- noframes,
77
- noscript,
78
- object,
79
- ol,
80
- optgroup,
81
- option,
82
- output,
83
- p,
84
- param,
85
- picture,
86
- pre,
87
- progress,
88
- q,
89
- rp,
90
- rt,
91
- ruby,
92
- samp,
93
- script,
94
- section,
95
- select,
96
- small,
97
- source,
98
- span,
99
- strong,
100
- style,
101
- sub,
102
- summary,
103
- sup,
104
- svg,
105
- table,
106
- tbody,
107
- td,
108
- template,
109
- textarea,
110
- tfoot,
111
- th,
112
- thead,
113
- time,
114
- title,
115
- tr,
116
- track,
117
- tt,
118
- ul,
119
- _var,
120
- video,
121
- wbr
122
- } from './src/fnelements.mjs'
1
+ export * from './src/fntags.mjs'
2
+ export * from './src/fnroute.mjs'
3
+ export * from './src/fnelements.mjs'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@srfnstack/fntags",
3
- "version": "0.1.6",
3
+ "version": "0.3.0",
4
4
  "author": "Robert Kempton <r@snow87.com>",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/srfnstack/fntags",
@@ -30,10 +30,13 @@
30
30
  "state-management"
31
31
  ],
32
32
  "devDependencies": {
33
- "cypress": "^6.8.0"
33
+ "cypress": "^6.8.0",
34
+ "standard": "^16.0.4"
34
35
  },
35
36
  "scripts": {
36
- "test": "cypress run --headless -b chrome",
37
- "cypress": "cypress run -b chrome"
37
+ "test": "npm run lint && cypress run --spec test/** --headless -b chrome",
38
+ "cypress": "cypress run --spec test/** -b chrome",
39
+ "lint": "standard --env browser src && standard --env browser --env jest --global Prism --global cy test docs",
40
+ "lint:fix": "standard --env browser --fix src && standard --env browser --env jest --global Prism --global cy --fix test docs"
38
41
  }
39
42
  }