@northern/yaml-loader 1.0.3 → 1.0.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 (2) hide show
  1. package/README.md +2 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -40,14 +40,12 @@ The YAML loader module provides:
40
40
  - **Debugging**: Comprehensive debug information and error reporting
41
41
  - **Extensibility**: Custom resolver plugin system
42
42
 
43
- ## Installation
43
+ ## Basic Usage
44
44
 
45
45
  ```typescript
46
- import { loadYaml, YamlLoaderBuilder, YamlLoaderError } from './yaml-loader';
46
+ import loadYaml from '@northern/yaml-loader';
47
47
  ```
48
48
 
49
- ## Basic Usage
50
-
51
49
  ### Simple YAML Loading
52
50
 
53
51
  ```typescript
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@northern/yaml-loader",
3
- "version": "1.0.3",
4
- "description": "Load YAML files from fragment sources",
3
+ "version": "1.0.4",
4
+ "description": "Load YAML files from fragmented sources",
5
5
  "main": "lib/index.js",
6
6
  "files": [
7
7
  "lib/**/*"