@lingk/sync 0.1.1 → 0.1.3
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 +8 -13
- package/build/css/lingkStyles.css +1 -0
- package/build/lightning.js +196 -185
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js +2 -2
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +135 -92
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js +2 -2
- package/build/lingkStyles.js.map +1 -1
- package/build/main.js +2211 -753
- package/build/main.js.map +1 -1
- package/build/reducer.js +24 -16
- package/build/reducer.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
### Wizard Framework
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
__`npm start`__
|
|
3
|
+
Serve a dev version from `/src/lib`. Set vars (accountId, tenantId, piGuid) in App.js
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Builds all themes simultaneously. Main files include shared js and css.
|
|
5
|
+
__`npm run build`__
|
|
6
|
+
Build /src/lib directory into `/build` and minify to ES5
|
|
8
7
|
|
|
9
8
|
- reducer.js (plug into redux from here)
|
|
10
9
|
- main.js (import WizardFormLoader)
|
|
@@ -15,16 +14,12 @@ Builds all themes simultaneously. Main files include shared js and css.
|
|
|
15
14
|
- lingk.css
|
|
16
15
|
- lighning.css
|
|
17
16
|
|
|
17
|
+
__`npm test`__
|
|
18
|
+
Serve the `/build` version for testing
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
__`npm publish`__
|
|
21
|
+
Publish `/build` directory to @lingk/sync
|
|
21
22
|
|
|
22
23
|
|
|
23
24
|
|
|
24
25
|
|
|
25
|
-
### To switch themes:
|
|
26
|
-
|
|
27
|
-
change the source of the inputs in App.js (eg ./lib/themes/lingk)
|
|
28
|
-
change the css file in public/index.html
|
|
29
|
-
|
|
30
|
-
lingk theme depends on "Lingk" font
|