a71f801c3f
- Prisma schema: User, Session, RepoConfig, Preview, Job, WebhookToken, NoConfigComment, AdminSettings - Backend: auth (login/logout/me/first-user setup), webhook handler with HMAC verification, EC2 service, SSH service, deploy pipeline, job queue worker, cron workers - Frontend: Login with first-user detection, Dashboard, PreviewDetail with live log streaming, Settings, Repos config, Admin panel, SetupWizard, Privacy page - Docker Compose and Dockerfile for self-hosted deployment - Uses bcryptjs for Node 24 compatibility Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
'use strict'
|
||
|
||
let Container = require('./container')
|
||
let { my } = require('./symbols')
|
||
|
||
class Warning {
|
||
constructor(text, opts = {}) {
|
||
this.type = 'warning'
|
||
this.text = text
|
||
|
||
if (opts.node && opts.node.source) {
|
||
if (!opts.node[my]) {
|
||
// The node comes from another PostCSS copy in node_modules, so it does
|
||
// not have this copy’s methods. Container#normalize() rebuilds such
|
||
// nodes on insert, but a node passed straight to Result#warn() never
|
||
// goes through it.
|
||
Container.rebuild(opts.node)
|
||
}
|
||
let range = opts.node.rangeBy(opts)
|
||
this.line = range.start.line
|
||
this.column = range.start.column
|
||
this.endLine = range.end.line
|
||
this.endColumn = range.end.column
|
||
}
|
||
|
||
for (let opt in opts) this[opt] = opts[opt]
|
||
}
|
||
|
||
toString() {
|
||
if (this.node) {
|
||
return this.node.error(this.text, {
|
||
index: this.index,
|
||
plugin: this.plugin,
|
||
word: this.word
|
||
}).message
|
||
}
|
||
|
||
if (this.plugin) {
|
||
return this.plugin + ': ' + this.text
|
||
}
|
||
|
||
return this.text
|
||
}
|
||
}
|
||
|
||
module.exports = Warning
|
||
Warning.default = Warning
|