From ca3fb54550510c59fb785a9f9e384a7aafef18a6 Mon Sep 17 00:00:00 2001 From: Benoit Rospars <benoit.rospars@inria.fr> Date: Mon, 13 Mar 2023 15:16:33 +0100 Subject: [PATCH] Remove unnecessary id --- package.json | 4 ++-- src/v1/content.ts | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 3c713b4..735e710 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "@epoc/epoc-specs", - "version": "2.0.0", + "version": "2.0.0-beta-2", "description": "ePoc (Electronic Pocket Open Course) types specifications", "main": "dist/index.ts", "types": "dist/index.d.ts", "scripts": { - "prepublish": "tsc" + "publish": "tsc && npm publish --access=public" }, "repository": { "type": "git", diff --git a/src/v1/content.ts b/src/v1/content.ts index e7a717a..e64415b 100644 --- a/src/v1/content.ts +++ b/src/v1/content.ts @@ -1,7 +1,6 @@ import {html, uid} from './types'; export interface Content { - id: uid; type: 'html' | 'assessment' | 'video' | 'simple-question' | 'choice'; title: string; subtitle?: string; -- GitLab