@digest/typescript 4.1.6 → 4.2.1

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@digest/typescript",
3
3
  "title": "TypeScript Digest",
4
4
  "license": "LGPL-3.0-or-later",
5
- "version": "4.1.6",
5
+ "version": "4.2.1",
6
6
  "description": "Digested TypeScript configurations",
7
7
  "author": "wallzero @wallzeroblog (http://wallzero.com)",
8
8
  "contributors": [
@@ -31,14 +31,15 @@
31
31
  "scripts": {
32
32
  "lint": "run-p lint:es",
33
33
  "lint:es": "eslint 'src/**/*.[jt]s?(x)' --ignore-pattern 'src/**/*.d.ts'",
34
- "clean": "rimraf node_modules package-lock.json npm-debug.log"
34
+ "clean": "rimraf node_modules package-lock.json npm-debug.log",
35
+ "set:version": "npm version --allow-same-version --no-commit-hooks --no-git-tag-version --no-workspaces-update $(npm --silent view $(node -p \"require('./package.json').name\") version)"
35
36
  },
36
37
  "dependencies": {
37
- "typescript": "^5.0.2"
38
+ "typescript": "^5.0.3"
38
39
  },
39
40
  "keywords": [
40
41
  "digest",
41
42
  "typescript"
42
43
  ],
43
- "gitHead": "bfe3f970c7709e9e083a6752c4dbb271b12f89d2"
44
+ "gitHead": "8177f7ab8957fdc57fae277bfcde02811ee6a9fd"
44
45
  }
package/src/index.js CHANGED
@@ -1,18 +1,20 @@
1
1
  /*
2
2
 
3
- Copyright (C) 2016,2017 wallzero 2016,2017
3
+ This file is part of the Node Digest.
4
4
 
5
- This program is free software: you can redistribute it and/or modify it under the
6
- terms of the GNU General Public License as published by the Free Software Foundation,
7
- version.
5
+ Node Digest is free software: you can redistribute it and/or modify it under
6
+ the terms of the GNU Lesser General Public License as published by the Free
7
+ Software Foundation, either version 3 of the License, or (at your option)
8
+ any later version.
8
9
 
9
- This program is distributed in the hope that it will be useful, but WITHOUT ANY
10
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
- PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
- You should have received a copy of the GNU General Public License along with this
13
- program. If not, see <http://www.gnu.org/licenses/>.
10
+ Node Digest is distributed in the hope that it will be useful, but WITHOUT
11
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13
+ for more details.
14
14
 
15
- */
15
+ You should have received a copy of the GNU Lesser General Public License
16
+ along with Node Digest . If not, see <https://www.gnu.org/licenses/>.
16
17
 
18
+ */
17
19
  // eslint-disable-next-line @typescript-eslint/no-require-imports,unicorn/prefer-module
18
20
  module.exports = require('./tsconfig.json');
package/src/shared.d.ts CHANGED
@@ -1,19 +1,21 @@
1
1
  /*
2
2
 
3
- Copyright (C) 2016,2017 wallzero 2016,2017
3
+ This file is part of the Node Digest.
4
4
 
5
- This program is free software: you can redistribute it and/or modify it under the
6
- terms of the GNU General Public License as published by the Free Software Foundation,
7
- version.
5
+ Node Digest is free software: you can redistribute it and/or modify it under
6
+ the terms of the GNU Lesser General Public License as published by the Free
7
+ Software Foundation, either version 3 of the License, or (at your option)
8
+ any later version.
8
9
 
9
- This program is distributed in the hope that it will be useful, but WITHOUT ANY
10
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
- PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
- You should have received a copy of the GNU General Public License along with this
13
- program. If not, see <http://www.gnu.org/licenses/>.
10
+ Node Digest is distributed in the hope that it will be useful, but WITHOUT
11
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13
+ for more details.
14
14
 
15
- */
15
+ You should have received a copy of the GNU Lesser General Public License
16
+ along with Node Digest . If not, see <https://www.gnu.org/licenses/>.
16
17
 
18
+ */
17
19
  declare module '*.css';
18
20
  declare module '*.scss';
19
21
 
@@ -29,7 +31,6 @@ declare var System: {
29
31
  // @ts-ignore
30
32
  export default value;
31
33
  }*/
32
-
33
34
  declare var BUILD: {
34
35
  DATE: Date;
35
36
  };