workflow: include commit link in template explorer
This commit is contained in:
parent
ea4a352ee6
commit
a0f442f1d4
1
packages/global.d.ts
vendored
1
packages/global.d.ts
vendored
@ -2,6 +2,7 @@
|
|||||||
declare var __DEV__: boolean
|
declare var __DEV__: boolean
|
||||||
declare var __JSDOM__: boolean
|
declare var __JSDOM__: boolean
|
||||||
declare var __BROWSER__: boolean
|
declare var __BROWSER__: boolean
|
||||||
|
declare var __COMMIT__: string
|
||||||
|
|
||||||
// Feature flags
|
// Feature flags
|
||||||
declare var __FEATURE_OPTIONS__: boolean
|
declare var __FEATURE_OPTIONS__: boolean
|
||||||
|
@ -11,6 +11,14 @@ const App = {
|
|||||||
setup() {
|
setup() {
|
||||||
return () => [
|
return () => [
|
||||||
h('h1', `Vue 3 Template Explorer`),
|
h('h1', `Vue 3 Template Explorer`),
|
||||||
|
h(
|
||||||
|
'a',
|
||||||
|
{
|
||||||
|
href: `https://github.com/vuejs/vue-next/tree/${__COMMIT__}`,
|
||||||
|
target: `_blank`
|
||||||
|
},
|
||||||
|
`@${__COMMIT__}`
|
||||||
|
),
|
||||||
h('div', { id: 'options' }, [
|
h('div', { id: 'options' }, [
|
||||||
// mode selection
|
// mode selection
|
||||||
h('span', { class: 'options-group' }, [
|
h('span', { class: 'options-group' }, [
|
||||||
|
@ -19,6 +19,7 @@ body {
|
|||||||
h1 {
|
h1 {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
margin-right: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#options {
|
#options {
|
||||||
@ -30,10 +31,15 @@ h1 {
|
|||||||
margin-right: 30px;
|
margin-right: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header span, #header label, #header input {
|
#header span, #header label, #header input, #header a {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#header a {
|
||||||
|
font-weight: 600;
|
||||||
|
color: rgb(101, 163, 221);
|
||||||
|
}
|
||||||
|
|
||||||
#header .label {
|
#header .label {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
@ -133,6 +133,7 @@ function createConfig(output, plugins = []) {
|
|||||||
|
|
||||||
function createReplacePlugin(isProduction, isBunlderESMBuild, isBrowserBuild) {
|
function createReplacePlugin(isProduction, isBunlderESMBuild, isBrowserBuild) {
|
||||||
return replace({
|
return replace({
|
||||||
|
__COMMIT__: `"${process.env.COMMIT}"`,
|
||||||
__DEV__: isBunlderESMBuild
|
__DEV__: isBunlderESMBuild
|
||||||
? // preserve to be handled by bundlers
|
? // preserve to be handled by bundlers
|
||||||
`process.env.NODE_ENV !== 'production'`
|
`process.env.NODE_ENV !== 'production'`
|
||||||
|
@ -29,6 +29,7 @@ const formats = args.formats || args.f
|
|||||||
const devOnly = args.devOnly || args.d
|
const devOnly = args.devOnly || args.d
|
||||||
const prodOnly = !devOnly && (args.prodOnly || args.p)
|
const prodOnly = !devOnly && (args.prodOnly || args.p)
|
||||||
const buildAllMatching = args.all || args.a
|
const buildAllMatching = args.all || args.a
|
||||||
|
const commit = execa.sync('git', ['rev-parse', 'HEAD']).stdout.slice(0, 7)
|
||||||
;(async () => {
|
;(async () => {
|
||||||
if (!targets.length) {
|
if (!targets.length) {
|
||||||
await buildAll(allTargets)
|
await buildAll(allTargets)
|
||||||
@ -60,11 +61,16 @@ async function build(target) {
|
|||||||
[
|
[
|
||||||
'-c',
|
'-c',
|
||||||
'--environment',
|
'--environment',
|
||||||
`NODE_ENV:${env},` +
|
[
|
||||||
`TARGET:${target}` +
|
`COMMIT:${commit}`,
|
||||||
(formats ? `,FORMATS:${formats}` : ``) +
|
`NODE_ENV:${env}`,
|
||||||
(args.types ? `,TYPES:true` : ``) +
|
`TARGET:${target}`,
|
||||||
(prodOnly ? `,PROD_ONLY:true` : ``)
|
formats ? `FORMATS:${formats}` : ``,
|
||||||
|
args.types ? `TYPES:true` : ``,
|
||||||
|
prodOnly ? `PROD_ONLY:true` : ``
|
||||||
|
]
|
||||||
|
.filter(_ => _)
|
||||||
|
.join(',')
|
||||||
],
|
],
|
||||||
{ stdio: 'inherit' }
|
{ stdio: 'inherit' }
|
||||||
)
|
)
|
||||||
|
@ -22,10 +22,19 @@ const { targets, fuzzyMatchTarget } = require('./utils')
|
|||||||
const args = require('minimist')(process.argv.slice(2))
|
const args = require('minimist')(process.argv.slice(2))
|
||||||
const target = args._.length ? fuzzyMatchTarget(args._)[0] : 'vue'
|
const target = args._.length ? fuzzyMatchTarget(args._)[0] : 'vue'
|
||||||
const formats = args.formats || args.f
|
const formats = args.formats || args.f
|
||||||
|
const commit = execa.sync('git', ['rev-parse', 'HEAD']).stdout.slice(0, 7)
|
||||||
|
|
||||||
execa(
|
execa(
|
||||||
'rollup',
|
'rollup',
|
||||||
['-wc', '--environment', `TARGET:${target},FORMATS:${formats || 'global'}`],
|
[
|
||||||
|
'-wc',
|
||||||
|
'--environment',
|
||||||
|
[
|
||||||
|
`COMMIT:${commit}`,
|
||||||
|
`TARGET:${target}`,
|
||||||
|
`FORMATS:${formats || 'global'}`
|
||||||
|
].join(',')
|
||||||
|
],
|
||||||
{
|
{
|
||||||
stdio: 'inherit'
|
stdio: 'inherit'
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user