frameworks2 0.0.1 → 1.0.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.
Files changed (3) hide show
  1. package/index.js +1 -1
  2. package/loader.js +1 -1
  3. package/package.json +19 -22
package/index.js CHANGED
@@ -26,7 +26,7 @@ class FrameworkManager {
26
26
  return 'Loaded: ' + name
27
27
  }
28
28
 
29
- postloadFramework(Name) {
29
+ postloadFramework(name) {
30
30
  return 'Postloaded: ' + name
31
31
  }
32
32
 
package/loader.js CHANGED
@@ -1,6 +1,6 @@
1
1
  var fs = require('node:fs')
2
2
  var path = require('node:path')
3
- var _true = require('true')
3
+ var _true = require('true-value')
4
4
 
5
5
  module.exports = {
6
6
  load() {
package/package.json CHANGED
@@ -1,22 +1,19 @@
1
- {
2
- "dependencies": {
3
- "es-errors": "^1.3.0",
4
- "none": "^1.0.0",
5
- "true": "^0.0.4",
6
- "vanilla-javascript": "^1.1.1",
7
- "vapor-js-npm": "^1.4.6"
8
- },
9
- "name": "frameworks2",
10
- "version": "0.0.1",
11
- "description": "The Framework Framework",
12
- "main": "index.js",
13
- "devDependencies": {},
14
- "scripts": {
15
- "test": "echo \"Error: no test specified\" && exit 1"
16
- },
17
- "keywords": [
18
- "framework"
19
- ],
20
- "author": "tj-commits",
21
- "license": "MIT"
22
- }
1
+ {
2
+ "dependencies": {
3
+ "es-errors": "^1.3.0",
4
+ "none": "^1.0.0",
5
+ "true-value": "^2.0.5",
6
+ "vanilla-javascript": "^1.1.1",
7
+ "vapor-js-npm": "^1.4.6"
8
+ },
9
+ "name": "frameworks2",
10
+ "version": "1.0.0",
11
+ "description": "The Framework Framework",
12
+ "main": "index.js",
13
+ "devDependencies": {},
14
+ "keywords": [
15
+ "framework"
16
+ ],
17
+ "author": "tj-commits",
18
+ "license": "MIT"
19
+ }