Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(profiles/w3c-common): freeze profile to v25.5.0 #2838

Merged
merged 3 commits into from
Apr 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
282 changes: 140 additions & 142 deletions builds/respec-w3c-common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/respec-w3c-common.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions profiles/w3c-common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/**
* The w3c-common profile is DEPRECATED.
* Update (Apr 15, 2020): The w3c-common profile will no longer receive updates.
* It is frozen at v25.5.0.
*
* The difference between w3c-common and the w3c profile
* is that this profile includes jQuery to support legacy
Expand Down
2 changes: 1 addition & 1 deletion tests/test-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ async function checkIfFileExists(filePath) {
}

describe("builder (tool)", () => {
for (const profile of ["w3c-common", "w3c", "geonovum"]) {
for (const profile of ["w3c", "geonovum"]) {
const profileFile = path.join(__dirname, `../builds/respec-${profile}.js`);
const mapFile = path.join(__dirname, `../builds/respec-${profile}.js.map`);
it(`builds the "${profile}" profile and sourcemap`, async () => {
Expand Down
2 changes: 1 addition & 1 deletion tools/netlify.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const { Builder } = require("./builder");
const { DEPLOY_PRIME_URL, COMMIT_REF, REVIEW_ID, REPOSITORY_URL } = process.env;

const BUILD_DIR = path.resolve(__dirname, "../builds/");
const PROFILES = ["w3c", "w3c-common", "geonovum", "dini"];
const PROFILES = ["w3c", "geonovum", "dini"];

const SPECS = {
W3C: [
Expand Down
4 changes: 2 additions & 2 deletions tools/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,9 @@ const run = async () => {
await Prompts.askBuildAddCommitMergeTag();
await npm(`version ${version} -m "v${version}" --no-git-tag-version`);

// 3. Run the build script (node tools/build-w3c-common.js).
// 3. Run the build script (node tools/builder.js).
await npm("run builddeps");
for (const name of ["w3c-common", "w3c", "geonovum", "dini"]) {
for (const name of ["w3c", "geonovum", "dini"]) {
await Builder.build({ name });
}
console.log(colors.info(" Making sure the generated version is ok... 🕵🏻"));
Expand Down