jmapcloud-ng-core-types 0.4.1 → 0.4.2

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
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "jmapcloud-ng-core-types",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "JMap Cloud specific version of JMap Cloud NG Core types and interfaces",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
- "pub": "export NODE_ENV='production'; gulp publish --gulpfile build/gulpfile.js;",
9
- "copy": "export NODE_ENV='production'; gulp copy --gulpfile build/gulpfile.js;",
10
- "commit-doc": "export NODE_ENV='production'; gulp commit-doc --gulpfile build/gulpfile.js;",
11
- "doc-test": "export DOC_DIR='./docs/latest'; gulp typedoc --gulpfile build/gulpfile.js;",
12
- "copy-latest": "gulp copy-latest --gulpfile build/gulpfile.js;"
8
+ "pub": "export NODE_ENV='production'; node build/buildfile.js publish;",
9
+ "copy": "export NODE_ENV='production'; node build/buildfile.js copy;",
10
+ "commit-doc": "export NODE_ENV='production'; node build/buildfile.js commit-doc;",
11
+ "doc-test": "export DOC_DIR='./docs/latest'; node build/buildfile.js doc-test;",
12
+ "copy-latest": "node build/buildfile.js copy-latest;"
13
13
  },
14
14
  "repository": {
15
15
  "type": "git",
@@ -28,7 +28,6 @@
28
28
  },
29
29
  "homepage": "https://github.com/k2geospatial/jmapcloud-ng-core-types#readme",
30
30
  "devDependencies": {
31
- "gulp": "^4.0.2",
32
31
  "typedoc": "^0.24.8"
33
32
  },
34
33
  "dependencies": {
package/.prettierrc DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "printWidth": 120,
3
- "semi": false,
4
- "quoteProps": "consistent",
5
- "jsxBracketSameLine": true,
6
- "trailingComma": "none",
7
- "tabWidth": 2,
8
- "arrowParens": "avoid",
9
- "bracketSpacing": true
10
- }
@@ -1,21 +0,0 @@
1
- {
2
- "editor.formatOnSave": true,
3
- "editor.formatOnPaste": true,
4
- "editor.tabSize": 2,
5
- "editor.detectIndentation": false,
6
- "[typescript]": {
7
- "editor.defaultFormatter": "esbenp.prettier-vscode",
8
- "editor.codeActionsOnSave": {
9
- "source.organizeImports": true
10
- }
11
- },
12
- "[typescriptreact]": {
13
- "editor.defaultFormatter": "esbenp.prettier-vscode",
14
- "editor.codeActionsOnSave": {
15
- "source.organizeImports": true
16
- }
17
- },
18
- "[javascript]": {
19
- "editor.defaultFormatter": "esbenp.prettier-vscode"
20
- }
21
- }
package/_config.yml DELETED
@@ -1 +0,0 @@
1
- theme: jekyll-theme-cayman
package/tsconfig.json DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "outDir": "./out",
4
- "baseUrl": "./",
5
- "strict": true,
6
- "sourceMap": true,
7
- "noImplicitAny": true,
8
- "moduleResolution": "node",
9
- "module": "esnext",
10
- "target": "ES2022",
11
- "jsx": "react",
12
- "lib": [
13
- "ES5","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","DOM"
14
- ]
15
- },
16
- "include": ["./public/**/*", "./index.ts", "./all-enums.ts"]
17
- }