@bbn/bbn 1.0.140 → 1.0.144
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/dist/vars.js
CHANGED
|
@@ -47,7 +47,7 @@ var vars = {
|
|
|
47
47
|
red: '#db3340',
|
|
48
48
|
brown: '#8c6954'
|
|
49
49
|
},
|
|
50
|
-
reserved: ['abstract', 'boolean', 'break', 'byte', 'case', 'catch', 'char', 'class', 'continue', 'const', 'debugger', 'default', 'delete', 'do', 'double', 'else', 'enum', 'export', 'extends', 'false', 'final', 'finally', 'float', 'for', 'function', 'goto', 'if', 'implements', 'import', 'in', 'instanceof', 'int', 'interface', 'long', 'native', 'new', 'null', 'package', 'private', 'protected', 'public', 'return', 'short', 'static'
|
|
50
|
+
reserved: ['abstract', 'boolean', 'break', 'byte', 'case', 'catch', 'char', 'class', 'continue', 'const', 'debugger', 'default', 'delete', 'do', 'double', 'else', 'enum', 'export', 'extends', 'false', 'final', 'finally', 'float', 'for', 'function', 'goto', 'if', 'implements', 'import', 'in', 'instanceof', 'int', 'interface', 'long', /*'native', */ 'new', 'null', 'package', /*'private', 'protected', 'public', */ 'return', /*'short', 'static',*/ 'super', 'switch', 'synchronized', 'this', 'throw', 'throws', 'transient', 'true', 'try', 'typeof', 'var', 'void', 'while', 'with'],
|
|
51
51
|
mockText: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.",
|
|
52
52
|
regexp: {
|
|
53
53
|
url: new RegExp('^(https?:\\/\\/)?' + // protocol
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bbn/bbn",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.144",
|
|
4
4
|
"description": "Javascript toolkit",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
"type": "module",
|
|
11
11
|
"scripts": {
|
|
12
12
|
"type": "./node_modules/.bin/tsc",
|
|
13
|
-
"gitauto": "git stage ./src/*
|
|
13
|
+
"gitauto": "git stage ./src/* ./*.ts ./*.json ./test/*.mjs && git stage -f ./dist/*.js && git commit -m \"Latest changes\"",
|
|
14
|
+
"gitend": "git stage ./package.json && git stage -f ./dist/*.js && git commit -m \"Latest changes\" && git push",
|
|
14
15
|
"pub": "npm version patch && npm publish",
|
|
15
16
|
"build": "./node_modules/.bin/webpack --config webpack.config.js",
|
|
16
|
-
"all": "npm run type && npm run test && npm version patch && npm run build && npm run
|
|
17
|
+
"all": "npm run type && npm run test && npm run gitauto && npm version patch && npm run build && npm run gitend && npm publish",
|
|
17
18
|
"test": "IS_TESTING=true ./node_modules/.bin/mocha -r jsdom-global/register",
|
|
18
19
|
"wtf": "echo \"Error: no test specified\" && exit 1"
|
|
19
20
|
},
|
|
@@ -29,8 +30,7 @@
|
|
|
29
30
|
"ts-loader": "^9.5.0",
|
|
30
31
|
"webpack": "^5.88.2",
|
|
31
32
|
"webpack-cli": "^5.1.4",
|
|
32
|
-
"typescript": "5.1.6"
|
|
33
|
-
"typescript-bundle": "^1.0.18"
|
|
33
|
+
"typescript": "5.1.6"
|
|
34
34
|
},
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/nabab/bbn-js/issues"
|