Compare commits
5 Commits
v0.0.1
...
v0.1.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | bc9436d1d5 | |
Derrick Hammer | a4f3331a21 | |
Derrick Hammer | 82281b8ce8 | |
Derrick Hammer | c8d2f77cf7 | |
Derrick Hammer | 64ba20821f |
|
@ -0,0 +1,13 @@
|
|||
name: Build/Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
- develop-*
|
||||
|
||||
jobs:
|
||||
main:
|
||||
uses: lumeweb/github-node-deploy-workflow/.github/workflows/main.yml@master
|
||||
secrets: inherit
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"preset": [
|
||||
"@lumeweb/node-library-preset"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
# [0.1.0-develop.1](https://git.lumeweb.com/LumeWeb/presetter-kernel-module-preset/compare/v0.0.1...v0.1.0-develop.1) (2023-06-27)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add .presetterrc.json ([a4f3331](https://git.lumeweb.com/LumeWeb/presetter-kernel-module-preset/commit/a4f3331a2163180218e5024dcad6b863ee4ae64f))
|
||||
* add npm-shrinkwrap.json ([82281b8](https://git.lumeweb.com/LumeWeb/presetter-kernel-module-preset/commit/82281b8ce8b323ac9bf2afc235ae855e20cb64c2))
|
||||
* add repository to package.json ([c8d2f77](https://git.lumeweb.com/LumeWeb/presetter-kernel-module-preset/commit/c8d2f77cf70b3e5f28b87966614ce49be7174562))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* initial version ([64ba208](https://git.lumeweb.com/LumeWeb/presetter-kernel-module-preset/commit/64ba20821f3b0dab50fc48fd95b3254ece888b36))
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"name": "@lumeweb/presetter-kernel-module-preset",
|
||||
"version": "0.1.0-develop.1",
|
||||
"type": "module",
|
||||
"main": "lib/index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "gitea@git.lumeweb.com:LumeWeb/presetter-kernel-module-preset.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lumeweb/node-library-preset": "^0.2.5",
|
||||
"presetter": "*"
|
||||
},
|
||||
"readme": "ERROR: No README data found!",
|
||||
"scripts": {
|
||||
"prepare": "presetter bootstrap",
|
||||
"build": "run build",
|
||||
"semantic-release": "semantic-release"
|
||||
},
|
||||
"dependencies": {
|
||||
"presetter-preset-rollup": "^4.0.1"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
import type { PresetAsset } from "presetter-types";
|
||||
import { PresetContext } from "presetter-types";
|
||||
|
||||
/**
|
||||
* get the list of templates provided by this preset
|
||||
* @returns list of preset templates
|
||||
*/
|
||||
export default async function (context: PresetContext): Promise<PresetAsset> {
|
||||
const ignores = !context.custom.config?.official
|
||||
? [".github/workflows/ci.yml"]
|
||||
: [];
|
||||
|
||||
return {
|
||||
extends: ["presetter-preset-rollup", "@lumeweb/node-library-preset"],
|
||||
supplementaryIgnores: ignores,
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue