Compare commits

...

14 Commits

Author SHA1 Message Date
53d27dae90 update npmextra.json: githost 2024-04-01 21:33:03 +02:00
b24d1e978a update npmextra.json: githost 2024-04-01 19:57:20 +02:00
c5dfbc6aab update npmextra.json: githost 2024-03-30 21:46:16 +01:00
3e5133df51 switch to new org scheme 2023-07-10 02:41:14 +02:00
ce906cb908 3.0.19 2019-02-14 11:07:58 +01:00
caea0e0dcd fix(core): update 2019-02-14 11:07:57 +01:00
3585264df8 3.0.18 2019-02-13 22:05:37 +01:00
2df97435ce fix(structure): format 2019-02-13 22:05:37 +01:00
22fdf03d3c 3.0.17 2019-02-13 21:23:03 +01:00
69bd6a03a0 fix(core): update 2019-02-13 21:23:03 +01:00
56b675dbbf 3.0.16 2019-02-13 00:49:53 +01:00
0aab9fcff9 fix(core): update 2019-02-13 00:49:52 +01:00
f28557c403 3.0.15 2019-02-13 00:48:37 +01:00
95fac7da7e fix(build): remove npmts 2019-02-13 00:48:36 +01:00
5 changed files with 35 additions and 26 deletions

@ -1,7 +1,19 @@
{
"gitzone": {
"module": {
"githost": "code.foss.global",
"gitscope": "push.rocks",
"gitrepo": "gulp-browser",
"shortDescription": "browserify and other goodies for gulp",
"npmPackagename": "@push.rocks/gulp-browser",
"license": "MIT"
}
},
"npmci": {
"npmGlobalTools": [
"npmts"
]
"npmGlobalTools": [],
"npmAccessLevel": "public"
},
"tsdocs": {
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
}
}

2
package-lock.json generated

@ -1,6 +1,6 @@
{
"name": "@pushrocks/gulp-browser",
"version": "3.0.14",
"version": "3.0.19",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,7 @@
{
"name": "@pushrocks/gulp-browser",
"version": "3.0.14",
"name": "@push.rocks/gulp-browser",
"version": "3.0.19",
"private": false,
"description": "browserify and other goodies for gulp",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
@ -42,6 +43,5 @@
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"gulp": "^4.0.0"
},
"private": true
}
}
}

14
tsconfig.json Normal file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"verbatimModuleSyntax": true
},
"exclude": [
"dist_*/**/*.d.ts"
]
}

@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}