@jahia/create-module 0.0.2 → 0.0.4
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/.github/workflows/lint.yml +5 -3
- package/.github/workflows/publish-release.yml +2 -2
- package/.yarn/releases/yarn-4.5.0.cjs +925 -0
- package/.yarnrc.yml +3 -0
- package/README.md +9 -4
- package/index.js +34 -67
- package/package.json +7 -10
- package/template/.babelrc +9 -0
- package/template/.yarn/releases/yarn-4.3.1.cjs +894 -0
- package/template/.yarnrc.yml +3 -0
- package/{jsx → template}/README.md +20 -0
- package/{handlebars → template}/dotenv +1 -1
- package/template/dotgitignore +18 -0
- package/{jsx → template}/dotnpmignore +1 -1
- package/{jsx → template}/package.json +16 -16
- package/template/settings/README.md +30 -0
- package/{jsx → template/settings}/definitions.cnd +6 -0
- package/template/settings/locales/de.json +5 -0
- package/template/settings/locales/en.json +5 -0
- package/template/settings/locales/fr.json +5 -0
- package/template/src/server/templates/page/PageHome.jsx +29 -0
- package/template/src/server/views/hello/HelloDefault.jsx +19 -0
- package/{jsx → template}/webpack.config.js +49 -23
- package/babel.config.cjs.disabled +0 -3
- package/handlebars/README.md +0 -11
- package/handlebars/components/MODULE_NAMESPACE/hello/hello.cnd +0 -6
- package/handlebars/components/MODULE_NAMESPACE/hello/hello.default.hbs +0 -1
- package/handlebars/components/MODULE_NAMESPACE/hello/hello.icon.png +0 -0
- package/handlebars/components/jnt/page/page.home.hbs +0 -18
- package/handlebars/components/jnt/page/page.home.png +0 -0
- package/handlebars/components/jnt/page/page.home.properties +0 -2
- package/handlebars/definitions.cnd +0 -8
- package/handlebars/doteslintrc.cjs +0 -29
- package/handlebars/dotgitignore +0 -15
- package/handlebars/dotnpmignore +0 -4
- package/handlebars/import.xml +0 -8
- package/handlebars/locales/de.json +0 -3
- package/handlebars/locales/en.json +0 -3
- package/handlebars/locales/fr.json +0 -3
- package/handlebars/package.json +0 -41
- package/handlebars/resources/MODULE_NAME.properties +0 -2
- package/handlebars/resources/MODULE_NAME_fr.properties +0 -2
- package/handlebars/settings/README.txt +0 -9
- package/handlebars/src/index.js +0 -0
- package/handlebars/webpack.config.js +0 -49
- package/jsx/dotenv +0 -4
- package/jsx/dotgitignore +0 -15
- package/jsx/locales/de.json +0 -4
- package/jsx/locales/en.json +0 -4
- package/jsx/locales/fr.json +0 -4
- package/jsx/settings/README.txt +0 -9
- package/jsx/src/server/templates/page/PageHome.jsx +0 -24
- package/jsx/src/server/views/hello/HelloDefault.jsx +0 -18
- package/jsx/yarn.lock +0 -0
- /package/{jsx → template}/css/styles.css +0 -0
- /package/{jsx → template}/doteslintrc.cjs +0 -0
- /package/{jsx → template/settings}/import.xml +0 -0
- /package/{jsx → template/settings}/resources/MODULE_NAME.properties +0 -0
- /package/{jsx → template/settings}/resources/MODULE_NAME_fr.properties +0 -0
- /package/{jsx → template}/src/client/index.jsx +0 -0
- /package/{jsx → template}/src/server/components/index.js +0 -0
- /package/{jsx → template}/src/server/index.js +0 -0
- /package/{jsx → template}/src/server/templates/index.js +0 -0
- /package/{jsx → template}/src/server/templates/page/index.js +0 -0
- /package/{jsx → template}/src/server/views/hello/index.js +0 -0
- /package/{jsx → template}/src/server/views/index.js +0 -0
- /package/{handlebars → template}/yarn.lock +0 -0
|
@@ -3,7 +3,7 @@ name: Lint
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
5
|
branches:
|
|
6
|
-
-
|
|
6
|
+
- "**"
|
|
7
7
|
|
|
8
8
|
jobs:
|
|
9
9
|
lint:
|
|
@@ -14,7 +14,8 @@ jobs:
|
|
|
14
14
|
image: node:lts-alpine
|
|
15
15
|
|
|
16
16
|
steps:
|
|
17
|
-
- uses: actions/checkout@
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
- run: corepack enable
|
|
18
19
|
- run: yarn set version stable
|
|
19
20
|
- run: yarn
|
|
20
21
|
- run: yarn run lint
|
|
@@ -29,7 +30,8 @@ jobs:
|
|
|
29
30
|
image: node:lts-alpine
|
|
30
31
|
|
|
31
32
|
steps:
|
|
32
|
-
- uses: actions/checkout@
|
|
33
|
+
- uses: actions/checkout@v4
|
|
34
|
+
- run: corepack enable
|
|
33
35
|
- run: yarn set version stable
|
|
34
36
|
- run: yarn
|
|
35
37
|
- run: yarn jahia-pack
|