shinkansen-sprockets 1.0.68 → 1.0.71

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 (3) hide show
  1. package/README.md +7 -4
  2. package/package.json +1 -1
  3. package/nvm.sh +0 -43
package/README.md CHANGED
@@ -1,11 +1,14 @@
1
1
  ## `shinkansen-sprockets`
2
2
 
3
- # Shinkansen Sprockets
3
+ Shinkansen generates JSON Schema valid documents from user submissions with `<html />` forms.
4
4
 
5
- *Sprockets* are input groups for *React*.
5
+ # Sprockets
6
6
 
7
- *Sprockets* are consistent with the [GOV.UK Design System](https://design-system.service.gov.uk/) but also encourage composition and inheritance.
7
+ _Sprockets_ are React components for input groups.
8
+
9
+ _Sprockets_ are composed of _Cogs_ to contribute named components for _Engine_.
8
10
 
9
11
  ## See also
10
12
 
11
- - [Shinkansen Cogs](https://github.com/modernpoacher/shinkansen-cogs)
13
+ - [Cogs](https://github.com/modernpoacher/shinkansen-cogs)
14
+ - [Engine](https://github.com/modernpoacher/shinkansen-engine)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-sprockets",
3
- "version": "1.0.68",
3
+ "version": "1.0.71",
4
4
  "description": "Shinkansen Sprockets",
5
5
  "keywords": [
6
6
  "Shinkansen",
package/nvm.sh DELETED
@@ -1,43 +0,0 @@
1
- #!/bin/bash
2
-
3
- NVM=~/.nvm
4
-
5
- if [ -f "$NVM/nvm.sh" ];
6
- then
7
- unset npm_package_scripts_nvm
8
- unset npm_config_prefix
9
- unset npm_lifecycle_script
10
-
11
- source $NVM/nvm.sh
12
- else
13
- NVM=$(brew --prefix nvm 2> /dev/null)
14
-
15
- if [ -f "$NVM/nvm.sh" ];
16
- then
17
- unset npm_package_scripts_nvm
18
- unset npm_config_prefix
19
- unset npm_lifecycle_script
20
-
21
- source $NVM/nvm.sh
22
- fi
23
- fi
24
-
25
- VERSION=$(nvm --version 2> /dev/null)
26
-
27
- if [ -z "$VERSION" ];
28
- then
29
- echo Environment does not have NVM installed
30
- else
31
- echo Environment has NVM version $VERSION installed
32
-
33
- set -e
34
-
35
- nvm use
36
-
37
- if [[ $? != 0 ]];
38
- then
39
- echo Environment does not have NVM configured
40
- else
41
- echo Environment has NVM version $VERSION configured
42
- fi
43
- fi