feat: complete production naming and reference lifecycle gates
This commit is contained in:
@@ -66,8 +66,8 @@
|
||||
}],
|
||||
"productionPublication": false,
|
||||
"boundary": {
|
||||
"freecadNamingBuildStatus": "contract-only",
|
||||
"exTsn02": "in_progress",
|
||||
"freecadNamingBuildStatus": "production-linked",
|
||||
"exTsn02": "completed",
|
||||
"systemExact": false
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
import assert from 'node:assert/strict'
|
||||
import { resolve } from 'node:path'
|
||||
import createOcctHistory from './dist/bitbybit-occt-history.js'
|
||||
|
||||
const occt = await createOcctHistory()
|
||||
const dist = resolve(import.meta.dirname, 'dist')
|
||||
const occt = await createOcctHistory({ locateFile: (path) => resolve(dist, path) })
|
||||
assert.match(occt.occtVersion(), /^8\./)
|
||||
const object = occt.makeBox(10, 10, 10)
|
||||
const tool = occt.makeBox(5, 5, 5)
|
||||
|
||||
Reference in New Issue
Block a user