Skip to content

Commit b66bf9e

Browse files
committed
added submodule import
1 parent 0ce252c commit b66bf9e

File tree

136 files changed

+26
-11127
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+26
-11127
lines changed

package-lock.json

+3-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"prettier": "^1.14.3",
3535
"typedoc": "^0.22.5",
3636
"typedoc-plugin-markdown": "^3.11.3",
37-
"typescript": "^3.9.6"
37+
"typescript": "~4.3.5"
3838
},
3939
"dependencies": {}
40-
}
40+
}

packages/sitecore-jss-angular-schematics/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"build": "tsc -p tsconfig.json",
77
"test-package": "jasmine src/**/*_spec.js",
88
"test": "npm run build && npm run test-package",
9-
"coverage": "nyc npm run test-package"
9+
"coverage": "nyc npm run test-package",
10+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-angular-schematics src/jss-component/index.ts"
1011
},
1112
"engines": {
1213
"node": ">=8.1"

packages/sitecore-jss-angular/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"lint": "eslint ./src/**/*.ts",
88
"test": "karma start",
99
"test:watch": "karma start --no-single-run --browsers Chrome",
10-
"coverage": "npm test"
10+
"coverage": "npm test",
11+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-angular src/public_api.ts"
1112
},
1213
"author": {
1314
"name": "Sitecore Corporation",

packages/sitecore-jss-angular/src/components/placeholder.component.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
Output,
88
} from '@angular/core';
99
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
10-
import { ComponentRendering } from '@sitecore-jss/sitecore-jss';
10+
import { ComponentRendering } from '@sitecore-jss/sitecore-jss/layout';
1111
import { By } from '@angular/platform-browser';
1212
import { SpyNgModuleFactoryLoader } from '@angular/router/testing';
1313

packages/sitecore-jss-dev-tools/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"lint": "eslint ./src/**/*.ts",
1313
"test": "mocha --require ts-node/register \"./src/**/*.test.ts\"",
1414
"prepublishOnly": "npm run build",
15-
"coverage": "nyc npm test"
15+
"coverage": "nyc npm test",
16+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-dev-tools src/index.ts"
1617
},
1718
"engines": {
1819
"node": ">=8.1"
@@ -86,4 +87,4 @@
8687
},
8788
"types": "types/index.d.ts",
8889
"gitHead": "2f4820efddf4454eeee58ed1b2cc251969efdf5b"
89-
}
90+
}

packages/sitecore-jss-forms/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"lint": "eslint ./src/**/*.ts",
1111
"test": "mocha --require ts-node/register \"./src/**/*.test.ts\"",
1212
"prepublishOnly": "npm run build",
13-
"coverage": "nyc npm test"
13+
"coverage": "nyc npm test",
14+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-forms src/index.ts"
1415
},
1516
"engines": {
1617
"node": ">=8.1"

packages/sitecore-jss-proxy/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"lint": "eslint ./src/**/*.ts",
1212
"test": "mocha --require ts-node/register \"./src/**/*.test.ts\"",
1313
"prepublishOnly": "npm run build",
14-
"coverage": "nyc npm test"
14+
"coverage": "nyc npm test",
15+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-proxy src/index.ts"
1516
},
1617
"engines": {
1718
"node": ">=8.1"

packages/sitecore-jss-react-forms/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"lint": "eslint ./src/**/*.tsx ./src/**/*.ts",
1111
"test": "mocha --require ts-node/register/transpile-only --require ./src/tests/shim.ts ./src/tests/jsdom-setup.ts ./src/tests/enzyme-setup.ts \"./src/**/*.test.tsx\"",
1212
"prepublishOnly": "npm run build",
13-
"coverage": "nyc npm test"
13+
"coverage": "nyc npm test",
14+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-react-forms src/index.ts"
1415
},
1516
"engines": {
1617
"node": ">=8.1"

packages/sitecore-jss-react-native/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"lint": "eslint ./src/**/*.tsx ./src/**/*.ts",
1212
"test": "jest",
1313
"prepublishOnly": "npm test && npm run build",
14-
"coverage": "jest --config ./jest.config.coverage.js"
14+
"coverage": "jest --config ./jest.config.coverage.js",
15+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-rendering-host src/index.ts"
1516
},
1617
"engines": {
1718
"node": ">=8.1"

packages/sitecore-jss-rendering-host/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"lint": "eslint ./src/**/*.ts",
1111
"test": "mocha --require ts-node/register/transpile-only \"./src/**/*.test.ts\"",
1212
"prepublishOnly": "npm run build",
13-
"coverage": "nyc npm test"
13+
"coverage": "nyc npm test",
14+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-rendering-host src/index.ts"
1415
},
1516
"engines": {
1617
"node": ">=8.10"

packages/sitecore-jss-vue/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"lint": "eslint ./src/**/*.ts",
1212
"test": "jest",
1313
"prepublishOnly": "npm run build",
14-
"coverage": "jest --config ./jest.config.coverage.js"
14+
"coverage": "jest --config ./jest.config.coverage.js",
15+
"generate-docs": "npx typedoc --plugin typedoc-plugin-markdown --readme none --out ../ref-docs/sitecore-jss-vue src/index.ts"
1516
},
1617
"engines": {
1718
"node": ">=8.1"
@@ -49,4 +50,4 @@
4950
},
5051
"types": "./types/index.d.ts",
5152
"gitHead": "2f4820efddf4454eeee58ed1b2cc251969efdf5b"
52-
}
53+
}

packages/sitecore-jss/src/index.ts

-97
This file was deleted.

ref-docs/sitecore-jss-nextjs/README.md

-25
This file was deleted.

0 commit comments

Comments
 (0)